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>

§

type Element = T