pub enum LexOperator {
Identifier(String),
Pipe(LinkedList<LexOperator>),
Generic(GenericObjectIndex),
}
Variants§
Trait Implementations§
Source§impl Clone for LexOperator
impl Clone for LexOperator
Source§fn clone(&self) -> LexOperator
fn clone(&self) -> LexOperator
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LexOperator
impl Debug for LexOperator
Source§impl MacroFormat for LexOperator
impl MacroFormat for LexOperator
Source§impl PartialEq for LexOperator
impl PartialEq for LexOperator
impl Eq for LexOperator
impl StructuralPartialEq for LexOperator
Auto Trait Implementations§
impl Freeze for LexOperator
impl RefUnwindSafe for LexOperator
impl Send for LexOperator
impl Sync for LexOperator
impl Unpin for LexOperator
impl UnwindSafe for LexOperator
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