pub enum KObj {
Atom(KType),
List(Vec<KObj>),
GenericList(Vec<KObj>),
Dict(Vec<KObj>, Vec<KObj>),
Table(Vec<KObj>, Vec<KObj>),
Error(String),
}Variants§
Atom(KType)
List(Vec<KObj>)
GenericList(Vec<KObj>)
Dict(Vec<KObj>, Vec<KObj>)
Table(Vec<KObj>, Vec<KObj>)
Error(String)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for KObj
impl RefUnwindSafe for KObj
impl Send for KObj
impl Sync for KObj
impl Unpin for KObj
impl UnwindSafe for KObj
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