pub trait WillChangeUtilities {
// Required method
fn will_change(self, change: WillChange) -> Self;
}
Expand description
Trait for adding will change utilities to a class builder
Required Methods§
fn will_change(self, change: WillChange) -> 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.