pub struct Infix<'a> {
pub op: &'a str,
pub associativity: Associativity,
pub precedence: Precedence,
pub name: &'a str,
}Fields§
§op: &'a str§associativity: Associativity§precedence: Precedence§name: &'a strTrait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Infix<'a>
impl<'a> RefUnwindSafe for Infix<'a>
impl<'a> Send for Infix<'a>
impl<'a> Sync for Infix<'a>
impl<'a> Unpin for Infix<'a>
impl<'a> UnsafeUnpin for Infix<'a>
impl<'a> UnwindSafe for Infix<'a>
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