pub enum Model {
}Variants
Error(String)
Status(String)
Integer(i64)
Double(f64)
Nil
String(Vec<u8>)
Array(Vec<Model>)
Map(Vec<(Model, Model)>)
Set(Vec<Model>)
Bool(bool)
Verb(Vec<u8>, Vec<u8>)
Push(Vec<Model>)
BigNum(BigInt)
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Model
impl Send for Model
impl Sync for Model
impl Unpin for Model
impl UnwindSafe for Model
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