pub enum Prefix<P, D, U, T> {
UnaryOperator {
precedence: P,
operator: U,
no_rhs: Option<T>,
},
LeftDelimiter {
delimiter: D,
operator: Option<U>,
empty: Option<T>,
},
RightDelimiter {
delimiter: D,
},
Term {
term: T,
},
None,
}
Variants§
Auto Trait Implementations§
impl<P, D, U, T> Freeze for Prefix<P, D, U, T>
impl<P, D, U, T> RefUnwindSafe for Prefix<P, D, U, T>
impl<P, D, U, T> Send for Prefix<P, D, U, T>
impl<P, D, U, T> Sync for Prefix<P, D, U, T>
impl<P, D, U, T> Unpin for Prefix<P, D, U, T>
impl<P, D, U, T> UnwindSafe for Prefix<P, D, U, T>
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> 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