abi_stable::traits

Trait IntoInner

Source
pub trait IntoInner {
    type Element;

    // Required method
    fn into_inner_(self) -> Self::Element;
}
Expand description

Unwraps a type into its owned value.

Required Associated Types§

Source

type Element

The type of the value this owns.

Required Methods§

Source

fn into_inner_(self) -> Self::Element

Unwraps this type into its owned value.

Implementors§

Source§

impl<'a, T> IntoInner for MovePtr<'a, T>