Enum std::num::FpCategory

1.0.0 · source ·
pub enum FpCategory {
    Nan,
    Infinite,
    Zero,
    Subnormal,
    Normal,
}
Expand description

浮点数的分类。

enum 用作 f32::classifyf64::classify 的返回类型。 有关更多信息,请参见他们的文档。

Examples

use std::num::FpCategory;

let num = 12.4_f32;
let inf = f32::INFINITY;
let zero = 0f32;
let sub: f32 = 1.1754942e-38;
let nan = f32::NAN;

assert_eq!(num.classify(), FpCategory::Normal);
assert_eq!(inf.classify(), FpCategory::Infinite);
assert_eq!(zero.classify(), FpCategory::Zero);
assert_eq!(sub.classify(), FpCategory::Subnormal);
assert_eq!(nan.classify(), FpCategory::Nan);
Run

Variants§

§

Nan

NaN (不是数字) : 这个值来自于类似于 (-1.0).sqrt() 等的计算得出。

有关 NaN 的独特属性的更多信息,请参见 f32 的文档

§

Infinite

正无穷大或负无穷大,通常由非零数除以零产生。

§

Zero

正零或负零。

有关零的符号性的更多信息,请参见 f32 的文档

§

Subnormal

Subnormaldenormal 浮点表示 (相对于它们的大小,不如 Normal 精确)。

subnormal 数在数量级上比 Zero 大,但在数量级上小于所有 Normal 数。

§

Normal

常规浮点数,不是任何特殊类别。

最小的 positive normal 数是 f32::MIN_POSITIVEf64::MIN_POSITIVE,最大的 positive normal 数是 f32::MAXf64::MAX。 (与有符号整数不同,浮点数在其范围内是对称的,因此否定这些常量中的任何一个都会产生它们的负对应项。)

Trait Implementations§

source§

impl Clone for FpCategory

source§

fn clone(&self) -> FpCategory

返回值的副本。 Read more
source§

fn clone_from(&mut self, source: &Self)

source 执行复制分配。 Read more
source§

impl Debug for FpCategory

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

使用给定的格式化程序格式化该值。 Read more
source§

impl PartialEq<FpCategory> for FpCategory

source§

fn eq(&self, other: &FpCategory) -> bool

此方法测试 selfother 值是否相等,并由 == 使用。
source§

fn ne(&self, other: &Rhs) -> bool

此方法测试 !=。 默认实现几乎总是足够的,并且不应在没有充分理由的情况下被覆盖。
source§

impl Copy for FpCategory

source§

impl Eq for FpCategory

source§

impl StructuralEq for FpCategory

source§

impl StructuralPartialEq for FpCategory

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

获取 selfTypeIdRead more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

从拥有的值中一成不变地借用。 Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

从拥有的值中借用。 Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

返回未更改的参数。

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

调用 U::from(self)

也就是说,这种转换是 From<T> for U 实现选择执行的任何操作。

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

获得所有权后的结果类型。
source§

fn to_owned(&self) -> T

从借用的数据创建拥有的数据,通常是通过克隆。 Read more
source§

fn clone_into(&self, target: &mut T)

使用借来的数据来替换拥有的数据,通常是通过克隆。 Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

发生转换错误时返回的类型。
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

执行转换。
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

发生转换错误时返回的类型。
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

执行转换。