#[repr(u32)]pub enum TexprBinop {
Add = 0,
Sub = 1,
Mul = 2,
Div = 3,
Mod = 4,
}Variants§
Trait Implementations§
Source§impl Clone for TexprBinop
impl Clone for TexprBinop
Source§fn clone(&self) -> TexprBinop
fn clone(&self) -> TexprBinop
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 Debug for TexprBinop
impl Debug for TexprBinop
Source§impl Hash for TexprBinop
impl Hash for TexprBinop
Source§impl PartialEq for TexprBinop
impl PartialEq for TexprBinop
impl Copy for TexprBinop
impl Eq for TexprBinop
impl StructuralPartialEq for TexprBinop
Auto Trait Implementations§
impl Freeze for TexprBinop
impl RefUnwindSafe for TexprBinop
impl Send for TexprBinop
impl Sync for TexprBinop
impl Unpin for TexprBinop
impl UnwindSafe for TexprBinop
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