pub trait Unbox {
type Target;
// Required method
fn unbox(self) -> Self::Target;
}Expand description
Trait specifying unboxing capability of a pointer type.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".