pub enum ExprPattern<E> {
Path(PathExpr<E>),
BinaryExpr(BinaryExpr<E>),
}
Variants§
Path(PathExpr<E>)
BinaryExpr(BinaryExpr<E>)
Trait Implementations§
Source§impl<E: Clone> Clone for ExprPattern<E>
impl<E: Clone> Clone for ExprPattern<E>
Source§fn clone(&self) -> ExprPattern<E>
fn clone(&self) -> ExprPattern<E>
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<E: Debug> Debug for ExprPattern<E>
impl<E: Debug> Debug for ExprPattern<E>
Source§impl<E: PartialEq> PartialEq for ExprPattern<E>
impl<E: PartialEq> PartialEq for ExprPattern<E>
impl<E: Eq> Eq for ExprPattern<E>
impl<E> StructuralPartialEq for ExprPattern<E>
Auto Trait Implementations§
impl<E> Freeze for ExprPattern<E>
impl<E> RefUnwindSafe for ExprPattern<E>where
E: RefUnwindSafe,
impl<E> Send for ExprPattern<E>where
E: Send,
impl<E> Sync for ExprPattern<E>where
E: Sync,
impl<E> Unpin for ExprPattern<E>where
E: Unpin,
impl<E> UnwindSafe for ExprPattern<E>where
E: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more