pub struct BuiltinPrecTable {
pub entries: Vec<(String, u32, bool)>,
}Expand description
A precedence table for built-in operators.
Fields§
§entries: Vec<(String, u32, bool)>Entries: (operator, precedence, left_assoc)
Implementations§
Auto Trait Implementations§
impl Freeze for BuiltinPrecTable
impl RefUnwindSafe for BuiltinPrecTable
impl Send for BuiltinPrecTable
impl Sync for BuiltinPrecTable
impl Unpin for BuiltinPrecTable
impl UnsafeUnpin for BuiltinPrecTable
impl UnwindSafe for BuiltinPrecTable
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