pub enum UserInputLeaf {
Literal(UserInputLiteral),
All,
Range {
field: Option<String>,
lower: UserInputBound,
upper: UserInputBound,
},
}
Variants
Literal(UserInputLiteral)
All
Range
Trait Implementations
sourceimpl Debug for UserInputLeaf
impl Debug for UserInputLeaf
sourceimpl From<UserInputLeaf> for UserInputAst
impl From<UserInputLeaf> for UserInputAst
sourcefn from(leaf: UserInputLeaf) -> UserInputAst
fn from(leaf: UserInputLeaf) -> UserInputAst
Converts to this type from the input type.
sourceimpl From<UserInputLiteral> for UserInputLeaf
impl From<UserInputLiteral> for UserInputLeaf
sourcefn from(literal: UserInputLiteral) -> UserInputLeaf
fn from(literal: UserInputLiteral) -> UserInputLeaf
Converts to this type from the input type.
sourceimpl PartialEq<UserInputLeaf> for UserInputLeaf
impl PartialEq<UserInputLeaf> for UserInputLeaf
sourcefn eq(&self, other: &UserInputLeaf) -> bool
fn eq(&self, other: &UserInputLeaf) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &UserInputLeaf) -> bool
fn ne(&self, other: &UserInputLeaf) -> bool
This method tests for !=
.
impl StructuralPartialEq for UserInputLeaf
Auto Trait Implementations
impl RefUnwindSafe for UserInputLeaf
impl Send for UserInputLeaf
impl Sync for UserInputLeaf
impl Unpin for UserInputLeaf
impl UnwindSafe for UserInputLeaf
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