pub enum ElemNode {
Node(Node),
Number(f64),
}Expand description
Node-or-number input accepted by core utilities.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ElemNode
impl RefUnwindSafe for ElemNode
impl Send for ElemNode
impl Sync for ElemNode
impl Unpin for ElemNode
impl UnwindSafe for ElemNode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more