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§
Required Methods§
Sourcefn into_inner(self) -> Self::Inner
fn into_inner(self) -> Self::Inner
Get the inner buffer.