pub struct ExprOperator {
pub name: ExprOperatorName,
pub arity: Arity,
pub associativity: Associativity,
pub precedence: u8,
}
Fields§
§name: ExprOperatorName
§arity: Arity
§associativity: Associativity
§precedence: u8
Auto Trait Implementations§
impl Freeze for ExprOperator
impl RefUnwindSafe for ExprOperator
impl Send for ExprOperator
impl Sync for ExprOperator
impl Unpin for ExprOperator
impl UnwindSafe for ExprOperator
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