Trait IntoGuts

Source
pub trait IntoGuts: HasGuts {
    // Required method
    fn into_guts(self) -> Self::Guts;
}
Expand description

Safely destructuring values into their guts.

Required Methods§

Source

fn into_guts(self) -> Self::Guts

Destructures a value into its guts.

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.

Implementors§