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

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

Unwraps a type into its owned value.

Associated Types

type Element[src]

The type of the value this owns.

Loading content...

Required methods

pub fn into_inner_(self) -> Self::Element[src]

Unwraps this type into its owned value.

Loading content...

Implementors

impl<'a, T> IntoInner for MovePtr<'a, T>[src]

type Element = T

Loading content...