Struct rustc_apfloat::Status
[−]
#[must_use]pub struct Status { /* fields omitted */ }
🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
IEEE-754R 7: Default exception handling.
UNDERFLOW or OVERFLOW are always returned or-ed with INEXACT.
Methods
impl Status
impl Statuspub const OK: Status
🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
OK: Status = Status{bits: 0,}
pub const INVALID_OP: Status
🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
INVALID_OP: Status = Status{bits: 1,}
pub const DIV_BY_ZERO: Status
🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
DIV_BY_ZERO: Status = Status{bits: 2,}
pub const OVERFLOW: Status
🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
OVERFLOW: Status = Status{bits: 4,}
pub const UNDERFLOW: Status
🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
UNDERFLOW: Status = Status{bits: 8,}
pub const INEXACT: Status
🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
INEXACT: Status = Status{bits: 16,}
pub fn empty() -> Status
pub fn empty() -> Status🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Returns an empty set of flags.
pub fn all() -> Status
pub fn all() -> Status🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Returns the set containing all flags.
pub fn bits(&self) -> u8
pub fn bits(&self) -> u8🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Returns the raw value of the flags currently stored.
pub fn from_bits(bits: u8) -> Option<Status>
pub fn from_bits(bits: u8) -> Option<Status>🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub fn from_bits_truncate(bits: u8) -> Status
pub fn from_bits_truncate(bits: u8) -> Status🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Returns true if no flags are currently stored.
pub fn is_all(&self) -> bool
pub fn is_all(&self) -> bool🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Returns true if all flags are currently set.
pub fn intersects(&self, other: Status) -> bool
pub fn intersects(&self, other: Status) -> bool🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Returns true if there are flags common to both self and other.
pub fn contains(&self, other: Status) -> bool
pub fn contains(&self, other: Status) -> bool🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Returns true all of the flags in other are contained within self.
pub fn insert(&mut self, other: Status)
pub fn insert(&mut self, other: Status)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Inserts the specified flags in-place.
pub fn remove(&mut self, other: Status)
pub fn remove(&mut self, other: Status)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Removes the specified flags in-place.
pub fn toggle(&mut self, other: Status)
pub fn toggle(&mut self, other: Status)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Toggles the specified flags in-place.
pub fn set(&mut self, other: Status, value: bool)
pub fn set(&mut self, other: Status, value: bool)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Inserts or removes the specified flags depending on the passed value.
impl Status[src]
impl Statuspub fn and<T>(self, value: T) -> StatusAnd<T>[src]
pub fn and<T>(self, value: T) -> StatusAnd<T>🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Trait Implementations
impl Copy for Status
impl Copy for Statusimpl PartialEq for Status
impl PartialEq for Statusfn eq(&self, __arg_0: &Status) -> bool
fn eq(&self, __arg_0: &Status) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Status) -> bool
fn ne(&self, __arg_0: &Status) -> boolThis method tests for !=.
impl Eq for Status
impl Eq for Statusimpl Clone for Status
impl Clone for Statusfn clone(&self) -> Status
fn clone(&self) -> StatusReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl PartialOrd for Status
impl PartialOrd for Statusfn partial_cmp(&self, __arg_0: &Status) -> Option<Ordering>
fn partial_cmp(&self, __arg_0: &Status) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, __arg_0: &Status) -> bool
fn lt(&self, __arg_0: &Status) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, __arg_0: &Status) -> bool
fn le(&self, __arg_0: &Status) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, __arg_0: &Status) -> bool
fn gt(&self, __arg_0: &Status) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, __arg_0: &Status) -> bool
fn ge(&self, __arg_0: &Status) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for Status
impl Ord for Statusfn cmp(&self, __arg_0: &Status) -> Ordering
fn cmp(&self, __arg_0: &Status) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl Hash for Status
impl Hash for Statusfn hash<__H: Hasher>(&self, __arg_0: &mut __H)
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for Status
impl Debug for Statusimpl Binary for Status
impl Binary for Statusimpl Octal for Status
impl Octal for Statusimpl LowerHex for Status
impl LowerHex for Statusimpl UpperHex for Status
impl UpperHex for Statusimpl BitOr for Status
impl BitOr for Statustype Output = Status
The resulting type after applying the | operator.
fn bitor(self, other: Status) -> Status
fn bitor(self, other: Status) -> StatusReturns the union of the two sets of flags.
impl BitOrAssign for Status
impl BitOrAssign for Statusfn bitor_assign(&mut self, other: Status)
fn bitor_assign(&mut self, other: Status)Adds the set of flags.
impl BitXor for Status
impl BitXor for Statustype Output = Status
The resulting type after applying the ^ operator.
fn bitxor(self, other: Status) -> Status
fn bitxor(self, other: Status) -> StatusReturns the left flags, but with all the right flags toggled.
impl BitXorAssign for Status
impl BitXorAssign for Statusfn bitxor_assign(&mut self, other: Status)
fn bitxor_assign(&mut self, other: Status)Toggles the set of flags.
impl BitAnd for Status
impl BitAnd for Statustype Output = Status
The resulting type after applying the & operator.
fn bitand(self, other: Status) -> Status
fn bitand(self, other: Status) -> StatusReturns the intersection between the two sets of flags.
impl BitAndAssign for Status
impl BitAndAssign for Statusfn bitand_assign(&mut self, other: Status)
fn bitand_assign(&mut self, other: Status)Disables all flags disabled in the set.
impl Sub for Status
impl Sub for Statustype Output = Status
The resulting type after applying the - operator.
fn sub(self, other: Status) -> Status
fn sub(self, other: Status) -> StatusReturns the set difference of the two sets of flags.
impl SubAssign for Status
impl SubAssign for Statusfn sub_assign(&mut self, other: Status)
fn sub_assign(&mut self, other: Status)Disables all flags enabled in the set.
impl Not for Status
impl Not for Statustype Output = Status
The resulting type after applying the ! operator.
fn not(self) -> Status
fn not(self) -> StatusReturns the complement of this set of flags.
impl Extend<Status> for Status
impl Extend<Status> for Statusfn extend<T: IntoIterator<Item = Status>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = Status>>(&mut self, iterator: T)Extends a collection with the contents of an iterator. Read more
impl FromIterator<Status> for Status
impl FromIterator<Status> for Statusfn from_iter<T: IntoIterator<Item = Status>>(iterator: T) -> Status
fn from_iter<T: IntoIterator<Item = Status>>(iterator: T) -> StatusCreates a value from an iterator. Read more