Enum http_parser::ParseAction [] [src]

pub enum ParseAction {
    None,
    SkipBody,
}

ParseAction defines the potential actions that could be returned by any callback function. The parser uses it to determine consequent behavior.

Variants

None

No special actions. Keep the normal execution.

SkipBody

Skip body

Trait Implementations

Derived Implementations

impl Clone for ParseAction

fn clone(&self) -> ParseAction

fn clone_from(&mut self, source: &Self)