pub trait IntoInner {
type Inner;
// Required method
fn into_inner(self) -> Self::Inner;
}Expand description
Owned-unwrap for poem extractors, so a pipe can take the value they carry without cloning.
Required Associated Types§
Required Methods§
fn into_inner(self) -> Self::Inner
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".