Trait compio_buf::IntoInner

source ·
pub trait IntoInner {
    type Inner;

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

Trait to get the inner buffer of an operation or a result.

Required Associated Types§

source

type Inner

The inner type.

Required Methods§

source

fn into_inner(self) -> Self::Inner

Get the inner buffer.

Implementors§

source§

impl<I: OwnedIterator> IntoInner for OwnedIter<I>

§

type Inner = <I as IntoInner>::Inner

source§

impl<T> IntoInner for Slice<T>

§

type Inner = T

source§

impl<T: IntoInner, O> IntoInner for BufResult<O, T>

§

type Inner = BufResult<O, <T as IntoInner>::Inner>