pub trait ScaleSelf<T> {
// Required method
fn scale_self(&mut self, _: T);
}
Expand description
A scaling that overwrites the receiver with the result.
Required Methods§
Sourcefn scale_self(&mut self, _: T)
fn scale_self(&mut self, _: T)
Perform the scaling.