Trait abi_stable::traits::IntoInner[][src]

pub trait IntoInner {
    type Element;
    fn into_inner_(self) -> Self::Element;
}
Expand description

Unwraps a type into its owned value.

Associated Types

The type of the value this owns.

Required methods

Unwraps this type into its owned value.

Implementors