pub trait Guest {
// Required method
fn convert_celsius_to_fahrenheit(x: f32) -> f32;
}
Required Methods§
Sourcefn convert_celsius_to_fahrenheit(x: f32) -> f32
fn convert_celsius_to_fahrenheit(x: f32) -> f32
Exported function for computing: (°C × 9/5) + 32 = °F
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.