Struct rvsim::softfloat::Sf64[][src]

#[repr(C)]pub struct Sf64(pub u64);

A double-precision soft-float. Internally represented as u64.

With the serialize crate feature, this structure is serializable using Serde.

Implementations

impl Sf64[src]

pub const NAN: Sf64[src]

The canonical NaN value.

pub fn negate(self) -> Sf64[src]

Negate the value / flip the sign bit.

Trait Implementations

impl Clone for Sf64[src]

impl Copy for Sf64[src]

impl Debug for Sf64[src]

impl<'de> Deserialize<'de> for Sf64[src]

impl From<Sf32> for Sf64[src]

fn from(x: Sf32) -> Sf64[src]

Conversion that adds NaN-boxing.

impl From<Sf64> for Sf32[src]

fn from(x: Sf64) -> Sf32[src]

Conversion that discards the upper-bits, which are assumed to be NaN-boxing.

impl From<f32> for Sf64[src]

fn from(x: f32) -> Sf64[src]

Conversion that transmutes the value, then adds NaN-boxing.

impl From<f64> for Sf64[src]

fn from(x: f64) -> Sf64[src]

Conversion that simply transmutes the value.

impl Serialize for Sf64[src]

Auto Trait Implementations

impl RefUnwindSafe for Sf64

impl Send for Sf64

impl Sync for Sf64

impl Unpin for Sf64

impl UnwindSafe for Sf64

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.