Skip to main content

IntoInner

Trait IntoInner 

Source
pub trait IntoInner {
    type Inner;

    // Required method
    fn into_inner(self) -> Self::Inner;
}
Expand description

IntoInner is typically used for basic structures that wrap a single value.

Required Associated Types§

Required Methods§

Source

fn into_inner(self) -> Self::Inner

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§