Skip to main content

IntoInner

Trait IntoInner 

Source
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§

Source

fn into_inner(self) -> Self::Inner

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<T> IntoInner for Json<T>

Source§

type Inner = T

Source§

fn into_inner(self) -> T

Source§

impl<T> IntoInner for Path<T>

Source§

type Inner = T

Source§

fn into_inner(self) -> T

Source§

impl<T> IntoInner for Query<T>

Source§

type Inner = T

Source§

fn into_inner(self) -> T

Implementors§