pub enum Affix {
Nilfix,
Infix(Precedence, Associativity),
Prefix(Precedence),
Postfix(Precedence),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Affix
impl RefUnwindSafe for Affix
impl Send for Affix
impl Sync for Affix
impl Unpin for Affix
impl UnwindSafe for Affix
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