Enum httparse::Status[][src]

pub enum Status<T> {
    Complete(T),
    Partial,
}

The result of a successful parse pass.

Complete is used when the buffer contained the complete value. Partial is used when parsing did not reach the end of the expected value, but no invalid data was found.

Variants

The completed result.

A partial result.

Methods

impl<T> Status<T>
[src]

Convenience method to check if status is complete.

Convenience method to check if status is partial.

Convenience method to unwrap a Complete value. Panics if the status is Partial.

Trait Implementations

impl<T: Copy> Copy for Status<T>
[src]

impl<T: Clone> Clone for Status<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: PartialEq> PartialEq for Status<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T: Debug> Debug for Status<T>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<T> Send for Status<T> where
    T: Send

impl<T> Sync for Status<T> where
    T: Sync