pub trait MaybeBoxed<Out> {
// Required method
fn maybe_boxed(self) -> Out;
}Expand description
Conversion with fewer impls than From/Into
Required Methods§
Sourcefn maybe_boxed(self) -> Out
fn maybe_boxed(self) -> Out
Convert
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".