pub enum VarOption {
None,
Default(String),
DefaultIfEmpty(String),
IfNotEmpty(String),
IfSet(String),
Offset(isize),
OffsetLength(isize, isize),
LengthOf,
}Variants§
None
Default(String)
DefaultIfEmpty(String)
IfNotEmpty(String)
IfSet(String)
Offset(isize)
OffsetLength(isize, isize)
LengthOf
Trait Implementations§
impl StructuralPartialEq for VarOption
Auto Trait Implementations§
impl Freeze for VarOption
impl RefUnwindSafe for VarOption
impl Send for VarOption
impl Sync for VarOption
impl Unpin for VarOption
impl UnwindSafe for VarOption
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