pub struct UnaryOperator<'a> {
pub representation: &'a str,
pub precedence: u8,
}Fields§
§representation: &'a str§precedence: u8Trait Implementations§
Source§impl<'a> Clone for UnaryOperator<'a>
impl<'a> Clone for UnaryOperator<'a>
Source§fn clone(&self) -> UnaryOperator<'a>
fn clone(&self) -> UnaryOperator<'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 UnaryOperator<'a>
impl<'a> Debug for UnaryOperator<'a>
impl<'a> Copy for UnaryOperator<'a>
Auto Trait Implementations§
impl<'a> Freeze for UnaryOperator<'a>
impl<'a> RefUnwindSafe for UnaryOperator<'a>
impl<'a> Send for UnaryOperator<'a>
impl<'a> Sync for UnaryOperator<'a>
impl<'a> Unpin for UnaryOperator<'a>
impl<'a> UnwindSafe for UnaryOperator<'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