pub enum LispObject {
String(String),
List(Vec<Self>),
}Variants§
Trait Implementations§
Source§impl Debug for LispObject
impl Debug for LispObject
Source§impl PartialEq for LispObject
impl PartialEq for LispObject
impl Eq for LispObject
impl StructuralPartialEq for LispObject
Auto Trait Implementations§
impl Freeze for LispObject
impl RefUnwindSafe for LispObject
impl Send for LispObject
impl Sync for LispObject
impl Unpin for LispObject
impl UnwindSafe for LispObject
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