pub trait IntoRustTriple {
// Required method
fn rust_triple(&self) -> &'static str;
}Required Methods§
Sourcefn rust_triple(&self) -> &'static str
fn rust_triple(&self) -> &'static str
Returns the triple used by the rust build tools.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".