pub enum Int64Binary {
Add,
Sub,
Mul,
Div,
Idiv,
Udiv,
Rem,
Urem,
Mod,
}Variants§
Implementations§
Source§impl Int64Binary
impl Int64Binary
pub const Add: Self = Self::Add
pub const Sub: Self = Self::Sub
pub const Mul: Self = Self::Mul
pub const Div: Self = Self::Div
pub const Idiv: Self = Self::Idiv
pub const Udiv: Self = Self::Udiv
pub const Rem: Self = Self::Rem
pub const Urem: Self = Self::Urem
pub const Mod: Self = Self::Mod
Trait Implementations§
Source§impl Clone for Int64Binary
impl Clone for Int64Binary
Source§fn clone(&self) -> Int64Binary
fn clone(&self) -> Int64Binary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for Int64Binary
Source§impl Debug for Int64Binary
impl Debug for Int64Binary
impl Eq for Int64Binary
Source§impl Hash for Int64Binary
impl Hash for Int64Binary
Source§impl PartialEq for Int64Binary
impl PartialEq for Int64Binary
Source§fn eq(&self, other: &Int64Binary) -> bool
fn eq(&self, other: &Int64Binary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for Int64Binary
Auto Trait Implementations§
impl Freeze for Int64Binary
impl RefUnwindSafe for Int64Binary
impl Send for Int64Binary
impl Sync for Int64Binary
impl Unpin for Int64Binary
impl UnsafeUnpin for Int64Binary
impl UnwindSafe for Int64Binary
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