Struct int
pub struct int;Trait Implementations§
§impl Ord for int
impl Ord for int
§impl PartialOrd for int
impl PartialOrd for int
§impl SpecEuclideanMod for int
impl SpecEuclideanMod for int
type Output = int
fn spec_euclidean_mod(self, _rhs: int) -> <int as SpecEuclideanMod>::Output
§impl SpecEuclideanOrRealDiv for int
impl SpecEuclideanOrRealDiv for int
type Output = int
fn spec_euclidean_or_real_div( self, _rhs: int, ) -> <int as SpecEuclideanOrRealDiv>::Output
impl Copy for int
impl Eq for int
impl Structural for int
Auto Trait Implementations§
impl Freeze for int
impl RefUnwindSafe for int
impl Send for int
impl Sync for int
impl Unpin for int
impl UnwindSafe for int
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, U> IntoSpecImpl<U> for Twhere
U: From<T>,
impl<T, U> IntoSpecImpl<U> for Twhere
U: From<T>,
Source§impl<VERUS_SPEC__A> OrdSpec for VERUS_SPEC__A
impl<VERUS_SPEC__A> OrdSpec for VERUS_SPEC__A
Source§exec fn obeys_cmp_spec() -> bool
exec fn obeys_cmp_spec() -> bool
Source§exec fn cmp_spec(&self, other: &VERUS_SPEC__A) -> Ordering
exec fn cmp_spec(&self, other: &VERUS_SPEC__A) -> Ordering
Source§impl<A, Rhs> PartialEqIs<Rhs> for A
impl<A, Rhs> PartialEqIs<Rhs> for A
Source§impl<Rhs, VERUS_SPEC__A> PartialEqSpec<Rhs> for VERUS_SPEC__A
impl<Rhs, VERUS_SPEC__A> PartialEqSpec<Rhs> for VERUS_SPEC__A
Source§impl<A, Rhs> PartialOrdIs<Rhs> for A
impl<A, Rhs> PartialOrdIs<Rhs> for A
Source§open spec fn is_lt(&self, other: &Rhs) -> bool
open spec fn is_lt(&self, other: &Rhs) -> bool
{ self.partial_cmp_spec(other) == Some(Ordering::Less) }Source§open spec fn is_le(&self, other: &Rhs) -> bool
open spec fn is_le(&self, other: &Rhs) -> bool
{ matches!(self.partial_cmp_spec(other), Some(Ordering::Less | Ordering::Equal)) }Source§impl<Rhs, VERUS_SPEC__A> PartialOrdSpec<Rhs> for VERUS_SPEC__A
impl<Rhs, VERUS_SPEC__A> PartialOrdSpec<Rhs> for VERUS_SPEC__A
Source§exec fn obeys_partial_cmp_spec() -> bool
exec fn obeys_partial_cmp_spec() -> bool
Source§impl<T, VERUS_SPEC__A> TryFromSpec<T> for VERUS_SPEC__Awhere
VERUS_SPEC__A: TryFrom<T>,
impl<T, VERUS_SPEC__A> TryFromSpec<T> for VERUS_SPEC__Awhere
VERUS_SPEC__A: TryFrom<T>,
Source§exec fn obeys_try_from_spec() -> bool
exec fn obeys_try_from_spec() -> bool
Source§impl<T, VERUS_SPEC__A> TryIntoSpec<T> for VERUS_SPEC__Awhere
VERUS_SPEC__A: TryInto<T>,
impl<T, VERUS_SPEC__A> TryIntoSpec<T> for VERUS_SPEC__Awhere
VERUS_SPEC__A: TryInto<T>,
Source§exec fn obeys_try_into_spec() -> bool
exec fn obeys_try_into_spec() -> bool
Source§impl<T, U> TryIntoSpecImpl<U> for Twhere
U: TryFrom<T>,
impl<T, U> TryIntoSpecImpl<U> for Twhere
U: TryFrom<T>,
Source§open spec fn obeys_try_into_spec() -> bool
open spec fn obeys_try_into_spec() -> bool
{ <U as TryFromSpec<Self>>::obeys_try_from_spec() }