pub enum PrimObj {
Prim(Prim),
Brace,
Block,
Str(String),
EmptyBrack,
Any,
}Variants§
Prim(Prim)
Brace
Block
Str(String)
EmptyBrack
Any
Untyped last / Nth last — the most recent object of any kind
(e.g. last.c, 2nd last.n). Used when no type keyword follows.
Trait Implementations§
impl StructuralPartialEq for PrimObj
Auto Trait Implementations§
impl Freeze for PrimObj
impl RefUnwindSafe for PrimObj
impl Send for PrimObj
impl Sync for PrimObj
impl Unpin for PrimObj
impl UnsafeUnpin for PrimObj
impl UnwindSafe for PrimObj
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