Trait miri::helpers::ToHost

source ·
pub trait ToHost {
    type HostFloat;

    // Required method
    fn to_host(self) -> Self::HostFloat;
}
Expand description

Convert a softfloat type to its corresponding hostfloat type.

Required Associated Types§

Required Methods§

source

fn to_host(self) -> Self::HostFloat

Implementations on Foreign Types§

source§

impl ToHost for Double

§

type HostFloat = f64

source§

fn to_host(self) -> Self::HostFloat

source§

impl ToHost for Single

§

type HostFloat = f32

source§

fn to_host(self) -> Self::HostFloat

Implementors§