pub enum E {
I(i32),
D(f64),
S(String),
T(Vec<E>),
None,
}
Expand description
Enum, which is used to contain LinuxTuples element
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for E
impl RefUnwindSafe for E
impl Send for E
impl Sync for E
impl Unpin for E
impl UnwindSafe for E
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