pub trait IntoGuts: HasGuts {
    // Required method
    fn into_guts(self) -> Self::Guts;
}Expand description
Safely destructuring values into their guts.
Required Methods§
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.