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