pub trait RoundOut<R> {
// Required method
fn round_out(&self) -> R;
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
pub trait RoundOut<R> {
// Required method
fn round_out(&self) -> R;
}This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".