pub enum Object {
Return(Return),
Int(Int),
Bool(Bool),
String(StringObject),
Function(Function),
CompiledFunction(CompiledFunction),
Array(Array),
Closure(ClosureFunction),
}Variants§
Return(Return)
Int(Int)
Bool(Bool)
String(StringObject)
Function(Function)
CompiledFunction(CompiledFunction)
Array(Array)
Closure(ClosureFunction)
Trait Implementations§
source§impl ObjectTrait for Object
impl ObjectTrait for Object
source§impl PartialEq for Object
impl PartialEq for Object
impl StructuralPartialEq for Object
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