Struct wasmi::core::F64

source ·
pub struct F64(/* private fields */);
Expand description

A NaN preserving f64 type.

Implementations§

source§

impl F64

source

pub fn from_bits(other: u64) -> F64

Creates a float from its underlying bits.

source

pub fn to_bits(self) -> u64

Returns the underlying bits of the float.

source

pub fn from_float(float: f64) -> F64

Creates a float from the respective primitive float type.

source

pub fn to_float(self) -> f64

Returns the respective primitive float type.

source

pub fn is_nan(self) -> bool

Returns true if the float is not a number (NaN).

source

pub fn abs(self) -> F64

Returns the absolute value of the float.

source

pub fn fract(self) -> F64

Returns the fractional part of the float.

source

pub fn min(self, other: F64) -> F64

Returns the minimum float between self and other.

source

pub fn max(self, other: F64) -> F64

Returns the maximum float between self and other.

Trait Implementations§

source§

impl<T> Add<T> for F64
where T: Into<F64>,

§

type Output = F64

The resulting type after applying the + operator.
source§

fn add(self, other: T) -> F64

Performs the + operation. Read more
source§

impl Clone for F64

source§

fn clone(&self) -> F64

Returns a copy 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 F64

source§

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

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

impl Display for F64

source§

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

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

impl<T> Div<T> for F64
where T: Into<F64>,

§

type Output = F64

The resulting type after applying the / operator.
source§

fn div(self, other: T) -> F64

Performs the / operation. Read more
source§

impl From<F64> for UntypedVal

source§

fn from(value: F64) -> UntypedVal

Converts to this type from the input type.
source§

impl From<F64> for Val

source§

fn from(val: F64) -> Self

Converts to this type from the input type.
source§

impl From<UntypedVal> for F64

source§

fn from(untyped: UntypedVal) -> F64

Converts to this type from the input type.
source§

impl From<f64> for F64

source§

fn from(float: f64) -> F64

Converts to this type from the input type.
source§

impl From<u64> for F64

source§

fn from(other: u64) -> F64

Converts to this type from the input type.
source§

impl<T> Mul<T> for F64
where T: Into<F64>,

§

type Output = F64

The resulting type after applying the * operator.
source§

fn mul(self, other: T) -> F64

Performs the * operation. Read more
source§

impl Neg for F64

§

type Output = F64

The resulting type after applying the - operator.
source§

fn neg(self) -> F64

Performs the unary - operation. Read more
source§

impl<T> PartialEq<T> for F64
where T: Into<F64> + Copy,

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> PartialOrd<T> for F64
where T: Into<F64> + Copy,

source§

fn partial_cmp(&self, other: &T) -> 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

This method 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

This method 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

This method 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

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

impl<T> Rem<T> for F64
where T: Into<F64>,

§

type Output = F64

The resulting type after applying the % operator.
source§

fn rem(self, other: T) -> F64

Performs the % operation. Read more
source§

impl<T> Sub<T> for F64
where T: Into<F64>,

§

type Output = F64

The resulting type after applying the - operator.
source§

fn sub(self, other: T) -> F64

Performs the - operation. Read more
source§

impl Copy for F64

source§

impl WasmTy for F64

Auto Trait Implementations§

§

impl Freeze for F64

§

impl RefUnwindSafe for F64

§

impl Send for F64

§

impl Sync for F64

§

impl Unpin for F64

§

impl UnwindSafe for F64

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<T1> DecodeUntypedSlice for T1
where T1: From<UntypedVal>,

source§

fn decode_untyped_slice(results: &[UntypedVal]) -> Result<T1, UntypedError>

Decodes the slice of UntypedVal as a value of type Self. Read more
source§

impl<T> Downcast for T
where T: Any,

source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
source§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
source§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

source§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
source§

impl<T1> EncodeUntypedSlice for T1
where T1: Into<UntypedVal>,

source§

fn encode_untyped_slice( self, results: &mut [UntypedVal] ) -> Result<(), UntypedError>

Encodes the slice of UntypedVal from the given value of type Self. 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,

§

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§

default 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>,

§

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>,

§

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.
source§

impl<T1> WasmRet for T1
where T1: WasmTy,

§

type Ok = T1

source§

fn into_fallible(self) -> Result<<T1 as WasmRet>::Ok, Error>

source§

impl<T1> WasmTyList for T1
where T1: WasmTy,

source§

const LEN: usize = 1usize

§

type Types = [ValType; 1]

§

type TypesIter = IntoIter<ValType, 1>

§

type Values = [UntypedVal; 1]

§

type ValuesIter = IntoIter<UntypedVal, 1>

source§

fn types() -> <T1 as WasmTyList>::Types

source§

fn values(self) -> <T1 as WasmTyList>::Values

source§

fn from_values(values: &[UntypedVal]) -> Option<T1>

source§

impl<T, Rhs, Output> NumOps<Rhs, Output> for T
where T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,

source§

impl<T> WasmParams for T
where T: WasmTyList,

source§

impl<T> WasmResults for T
where T: WasmTyList,