Enum data_query_lexical::LexOperator
source · [−]pub enum LexOperator {
Identifier(String),
Pipe(LinkedList<LexOperator>),
Generic(GenericObjectIndex),
}
Variants
Identifier(String)
Pipe(LinkedList<LexOperator>)
Generic(GenericObjectIndex)
Trait Implementations
sourceimpl Clone for LexOperator
impl Clone for LexOperator
sourcefn clone(&self) -> LexOperator
fn clone(&self) -> LexOperator
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for LexOperator
impl Debug for LexOperator
sourceimpl MacroFormat for LexOperator
impl MacroFormat for LexOperator
sourceimpl PartialEq<LexOperator> for LexOperator
impl PartialEq<LexOperator> for LexOperator
sourcefn eq(&self, other: &LexOperator) -> bool
fn eq(&self, other: &LexOperator) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &LexOperator) -> bool
fn ne(&self, other: &LexOperator) -> bool
This method tests for !=
.
impl Eq for LexOperator
impl StructuralEq for LexOperator
impl StructuralPartialEq for LexOperator
Auto Trait Implementations
impl RefUnwindSafe for LexOperator
impl Send for LexOperator
impl Sync for LexOperator
impl Unpin for LexOperator
impl UnwindSafe for LexOperator
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more