pub trait TransformInplace<Rhs> {
// Required method
fn transform_with(&mut self, with: Rhs) -> &mut Self;
}
Expand description
The TransformInplace
generically describes objects capable of being transformed
in-place by another object.
Required Methods§
fn transform_with(&mut self, with: Rhs) -> &mut Self
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.