pub trait TripleExt {
// Required methods
fn is_pulley(&self) -> bool;
fn pulley_host() -> Self;
}
Expand description
Extension methods for target_lexicon::Triple
.
Required Methods§
Sourcefn is_pulley(&self) -> bool
fn is_pulley(&self) -> bool
Helper for returning whether this target is for pulley, wasmtime’s interpreter.
Sourcefn pulley_host() -> Self
fn pulley_host() -> Self
Returns the target triple for pulley to run on this host.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.