pub enum Variable<'a> {
Nu,
Scope,
True,
False,
Nothing,
Other(&'a str),
}Variants
Nu
Scope
True
False
Nothing
Other(&'a str)
Implementations
Trait Implementations
sourceimpl<'a> From<&'a Expression> for Variable<'a>
impl<'a> From<&'a Expression> for Variable<'a>
sourcefn from(expr: &'a Expression) -> Self
fn from(expr: &'a Expression) -> Self
Performs the conversion.
Auto Trait Implementations
impl<'a> RefUnwindSafe for Variable<'a>
impl<'a> Send for Variable<'a>
impl<'a> Sync for Variable<'a>
impl<'a> Unpin for Variable<'a>
impl<'a> UnwindSafe for Variable<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more