Struct Float

Source
pub struct Float(/* private fields */);

Implementations§

Source§

impl Float

Source

pub const NEG_INFINITY: Self

Source

pub const INFINITY: Self

Source

pub const MIN: Self

Source

pub const MAX: Self

Source

pub const NAN: Self

Source

pub fn new(f: f32) -> Self

Source

pub fn is_nan(&self) -> bool

Returns true if this value is NaN.

Source

pub fn is_finite(&self) -> bool

Returns true if this number is neither infinite nor NaN.

Source

pub fn is_infinite(&self) -> bool

Returns true if this value is positive infinity or negative infinity, and false otherwise.

Source

pub fn is_positive(&self) -> bool

Returns true if self has a positive sign, including +0.0, NaNs with positive sign bit and positive infinity.

Note that IEEE 754 doesn’t assign any meaning to the sign bit in case of a NaN, and as Rust doesn’t guarantee that the bit pattern of NaNs are conserved over arithmetic operations, the result of is_positive on a NaN might produce an unexpected result in some cases. See explanation of NaN as a special value for more info.

Source

pub fn is_negative(&self) -> bool

Returns false if self has a negative sign, including -0.0, NaNs with negative sign bit and negative infinity.

Note that IEEE 754 doesn’t assign any meaning to the sign bit in case of a NaN, and as Rust doesn’t guarantee that the bit pattern of NaNs are conserved over arithmetic operations, the result of is_negative on a NaN might produce an unexpected result in some cases. See explanation of NaN as a special value for more info.

Source

pub const fn into_f32(self) -> f32

Converts this value into a f32.

Trait Implementations§

Source§

impl Add for Float

Source§

type Output = Float

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
Source§

impl AsRef<f32> for Float

Source§

fn as_ref(&self) -> &f32

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl Borrow<f32> for Float

Source§

fn borrow(&self) -> &f32

Immutably borrows from an owned value. Read more
Source§

impl Clone for Float

Source§

fn clone(&self) -> Float

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for Float

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Display for Float

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Div for Float

Source§

type Output = Float

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Self) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> From<&'a Float> for Float

Source§

fn from(value: &'a Float) -> Self

Converts to this type from the input type.
Source§

impl From<Float> for f32

Source§

fn from(value: Float) -> Self

Converts to this type from the input type.
Source§

impl From<Float> for f64

Source§

fn from(value: Float) -> Self

Converts to this type from the input type.
Source§

impl From<FloatBuf> for Float

Source§

fn from(value: FloatBuf) -> Self

Converts to this type from the input type.
Source§

impl From<f32> for Float

Source§

fn from(value: f32) -> Self

Converts to this type from the input type.
Source§

impl FromStr for Float

Source§

type Err = InvalidFloat

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for Float

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl LexicalFormOf<Float> for Float

Source§

type ValueError = Infallible

Source§

fn try_as_value(&self) -> Result<Float, Self::ValueError>

Source§

fn as_value(&self) -> V
where Self: LexicalFormOf<V, ValueError = Infallible>,

Source§

impl Mul for Float

Source§

type Output = Float

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Self) -> Self::Output

Performs the * operation. Read more
Source§

impl Ord for Float

Source§

fn cmp(&self, other: &Float) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl ParseXsd for Float

Source§

type LexicalForm = Float

Source§

fn parse_xsd(lexical_value: &str) -> ParseXsdResult<Self, Self::LexicalForm>

Source§

impl PartialEq for Float

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Float

Source§

fn partial_cmp(&self, other: &Float) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Sub for Float

Source§

type Output = Float

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
Source§

impl TryFrom<Decimal> for Float

Source§

type Error = FromDecimalError

The type returned in the event of a conversion error.
Source§

fn try_from(value: Decimal) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<Float> for Decimal

Source§

type Error = NonDecimalFloat

The type returned in the event of a conversion error.
Source§

fn try_from(value: Float) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl XsdValue for Float

Source§

fn datatype(&self) -> Datatype

Returns the XSD datatype that best describes the value.
Source§

impl Copy for Float

Source§

impl Eq for Float

Source§

impl StructuralPartialEq for Float

Auto Trait Implementations§

§

impl Freeze for Float

§

impl RefUnwindSafe for Float

§

impl Send for Float

§

impl Sync for Float

§

impl Unpin for Float

§

impl UnwindSafe for Float

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

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

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

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

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.