Struct rustful::filter::FilterContext [] [src]

pub struct FilterContext<'a> {
    pub storage: &'a mut AnyMap,
    pub global: &'a Global,
}

Contextual tools for filters.

Fields

Shared storage for filters. It is local to the current request and accessible from the handler and all of the filters. It can be used to send data between these units.

Globally accessible data.

Trait Implementations

Auto Trait Implementations

impl<'a> !Send for FilterContext<'a>

impl<'a> !Sync for FilterContext<'a>