pub trait Enlarge<Alpha> {
type Output;
// Required method
fn enlarge_with(&self, alpha: Alpha) -> Self::Output;
}Expand description
Trait for enlarging a value by a given margin.
Required Associated Types§
Required Methods§
fn enlarge_with(&self, alpha: Alpha) -> Self::Output
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".