pub trait Scale {
// Required method
fn scale(&self, scaler: isize) -> Self;
}
Expand description
Scale an SML value by the given scaler (base 10)
Required Methods§
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.