Trait viz_core::Extract[][src]

pub trait Extract: Sized {
    type Error;
    fn extract<'a>(
        cx: &'a mut Context
    ) -> BoxFuture<'a, 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