pub enum Object {
Char(Char),
Int32(Int<i32>),
Int64(Int<i64>),
Float32(Float<f32>),
Float64(Float<f64>),
String(_String),
List(List),
Bool(Bool),
}
Expand description
supreme enum
Variants§
Char(Char)
char object
Int32(Int<i32>)
int32 object
Int64(Int<i64>)
int64 object
Float32(Float<f32>)
int128 object float32 object
Float64(Float<f64>)
float64 object
String(_String)
String object
List(List)
List object
Bool(Bool)
Bool object
Trait Implementations§
Source§impl Append<Object> for List
impl Append<Object> for List
Source§fn append_back(&mut self, object: Object) -> &mut Self
fn append_back(&mut self, object: Object) -> &mut Self
Performs append
Auto Trait Implementations§
impl Freeze for Object
impl RefUnwindSafe for Object
impl Send for Object
impl Sync for Object
impl Unpin for Object
impl UnwindSafe for Object
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