Trait ntex::io::FilterFactory[][src]

pub trait FilterFactory<F> where
    F: Filter
{ type Filter: Filter; type Error: Debug; type Future: Future; fn create(self, st: Io<F>) -> Self::Future; }
Expand description

Creates new Filter values.

Associated Types

The Filter value created by this factory

Errors produced while building a filter.

The future of the FilterFactory instance.

Required methods

Create and return a new filter value asynchronously.

Implementors