pub enum Object {
Char(Char),
Int(Int),
Float32(Float<f32>),
Float64(Float<f64>),
String(_String),
List(List),
Bool(Bool),
}
Expand description
supreme enum
Variants
Char(Char)
char object
Int(Int)
int object
Float32(Float<f32>)
float32 object
Float64(Float<f64>)
float64 object
String(_String)
String object
List(List)
List object
Bool(Bool)
Bool object
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Object
impl Send for Object
impl Sync for Object
impl Unpin for Object
impl UnwindSafe for Object
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more