#[repr(C)]
pub struct Ieee32(_);
Expand description

An IEEE binary32 immediate floating point value, represented as a u32 containing the bit pattern.

We specifically avoid using a f32 here since some architectures may silently alter floats. See: https://github.com/bytecodealliance/wasmtime/pull/2251#discussion_r498508646

The PartialEq and Hash implementations are over the underlying bit pattern, but PartialOrd respects IEEE754 semantics.

All bit patterns are allowed.

Implementations

Create a new Ieee32 containing the bits of x.

Create an Ieee32 number representing 2.0^n.

Create an Ieee32 number representing the greatest negative value not convertable from f32 to a signed integer with width n.

Return self negated.

Create a new Ieee32 representing the number x.

Get the bitwise representation.

Check if the value is a NaN.

Converts Self to a rust f32

Returns the square root of self.

Computes the absolute value of self.

Returns a number composed of the magnitude of self and the sign of sign.

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

Returns true if self is positive or negative zero

Returns the smallest integer greater than or equal to self.

Returns the largest integer less than or equal to self.

Returns the integer part of self. This means that non-integer numbers are always truncated towards zero.

Returns the nearest integer to self. Rounds half-way cases to the number with an even least significant digit.

Trait Implementations

The resulting type after applying the + operator.

Performs the + operation. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

The resulting type after applying the / operator.

Performs the / operation. Read more

Performs the conversion.

Performs the conversion.

The associated error which can be returned from parsing.

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

Feeds this value into the given Hasher. Read more

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

Return the little-endian byte representation of the implementing type.

The resulting type after applying the * operator.

Performs the * operation. Read more

The resulting type after applying the - operator.

Performs the unary - operation. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

The resulting type after applying the - operator.

Performs the - operation. Read more

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Compare self to key and return true if they are equal.

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.