#[repr(C)]pub enum IntegerOverflowFlags {
None = 0,
NSW = 1,
NUW = 2,
}
Variants§
Implementations§
Trait Implementations§
Source§impl BitAnd for IntegerOverflowFlags
impl BitAnd for IntegerOverflowFlags
Source§impl BitOr for IntegerOverflowFlags
impl BitOr for IntegerOverflowFlags
Source§impl Clone for IntegerOverflowFlags
impl Clone for IntegerOverflowFlags
Source§fn clone(&self) -> IntegerOverflowFlags
fn clone(&self) -> IntegerOverflowFlags
Returns a copy 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 Display for IntegerOverflowFlags
impl Display for IntegerOverflowFlags
Source§impl From<IntegerOverflowFlags> for IntegerOverflowFlagsBitVector
impl From<IntegerOverflowFlags> for IntegerOverflowFlagsBitVector
Source§fn from(flags: IntegerOverflowFlags) -> Self
fn from(flags: IntegerOverflowFlags) -> Self
Converts to this type from the input type.
Source§impl From<i32> for IntegerOverflowFlags
impl From<i32> for IntegerOverflowFlags
Source§impl From<i64> for IntegerOverflowFlags
impl From<i64> for IntegerOverflowFlags
Source§impl PartialEq for IntegerOverflowFlags
impl PartialEq for IntegerOverflowFlags
impl Copy for IntegerOverflowFlags
impl StructuralPartialEq for IntegerOverflowFlags
Auto Trait Implementations§
impl Freeze for IntegerOverflowFlags
impl RefUnwindSafe for IntegerOverflowFlags
impl Send for IntegerOverflowFlags
impl Sync for IntegerOverflowFlags
impl Unpin for IntegerOverflowFlags
impl UnwindSafe for IntegerOverflowFlags
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