Enum krush_engine::Value
source · pub enum Value {
Str(String),
Int(i32),
Float(f64),
Bool(bool),
List(Vec<String>),
}Expand description
The values obtained from parsing a command arguments following its Definition
Variants§
Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
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