Trait viz_core::Extract[][src]

pub trait Extract: Sized {
    type Error: Into<Response>;
    fn extract(cx: &mut Context) -> BoxFuture<'_, Result<Self, Self::Error>>;
}
Expand description

A Extractor trait.

Associated Types

The type of failures extracted by this Extractor.

Required methods

Extract the value from Context.

Implementations on Foreign Types

Implementors