pub enum Lval {
Sym(String),
Num(f64),
Sexpr(Vec<Lval>),
Qexpr(Vec<Lval>),
Fun(Lfun),
Lambda(Llambda),
Str(String),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Lval
impl RefUnwindSafe for Lval
impl Send for Lval
impl Sync for Lval
impl Unpin for Lval
impl UnwindSafe for Lval
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