pub struct BinaryOperator<'a> {
pub representation: &'a str,
pub precedence: u8,
}Fields§
§representation: &'a str§precedence: u8Trait Implementations§
Source§impl<'a> Clone for BinaryOperator<'a>
impl<'a> Clone for BinaryOperator<'a>
Source§fn clone(&self) -> BinaryOperator<'a>
fn clone(&self) -> BinaryOperator<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for BinaryOperator<'a>
impl<'a> Debug for BinaryOperator<'a>
impl<'a> Copy for BinaryOperator<'a>
Auto Trait Implementations§
impl<'a> Freeze for BinaryOperator<'a>
impl<'a> RefUnwindSafe for BinaryOperator<'a>
impl<'a> Send for BinaryOperator<'a>
impl<'a> Sync for BinaryOperator<'a>
impl<'a> Unpin for BinaryOperator<'a>
impl<'a> UnwindSafe for BinaryOperator<'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