pub trait Unwrap {
type Output;
// Required method
fn unwrap(self) -> Self::Output;
}Expand description
Trait implemented by messages that can be unwrapped.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".