pub trait With<T> {
// Required method
fn with(self, _: T) -> Self;
}Expand description
Consumes, updates, and returns Self.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".