Enum rustful::filter::ResponseAction [] [src]

pub enum ResponseAction<'a> {
    Next(Option<Data<'a>>),
    SilentAbort,
    Abort(String),
}

The result from a response filter.

Variants

Continue to the next filter and maybe write data.

Do not continue to the next filter.

Abort with an error.

Methods

impl<'a> ResponseAction<'a>
[src]

Continue to the next filter and maybe write data.

Do not continue to the next filter.

Abort with an error.

Trait Implementations

impl<'a> Clone for ResponseAction<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<'a> Send for ResponseAction<'a>

impl<'a> Sync for ResponseAction<'a>