pub enum Atom {
Int(usize),
Str(Box<str>),
Bool(bool),
Path(Node<Path>),
List(Box<Node<List>>),
Table(Box<Node<Table>>),
Expr(Box<Node<Expr>>),
Apply(Node<Path>, Box<Node<Atom>>),
RawConf(Box<str>),
}Variants§
Int(usize)
Str(Box<str>)
Bool(bool)
Path(Node<Path>)
List(Box<Node<List>>)
Table(Box<Node<Table>>)
Expr(Box<Node<Expr>>)
Apply(Node<Path>, Box<Node<Atom>>)
RawConf(Box<str>)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !Send for Atom
impl !Sync for Atom
impl Freeze for Atom
impl RefUnwindSafe for Atom
impl Unpin for Atom
impl UnsafeUnpin for Atom
impl UnwindSafe for Atom
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