[][src]Struct email::rfc2045::Rfc2045Parser

pub struct Rfc2045Parser<'s> { /* fields omitted */ }

Parser over RFC 2045 style headers.

Things of the style value; param1=foo; param2="bar"

Methods

impl<'s> Rfc2045Parser<'s>[src]

pub fn new(s: &str) -> Rfc2045Parser[src]

Create a new parser over s

pub fn consume_all(&mut self) -> (String, HashMap<String, String>)[src]

Consume up to all of the input into the value and a hashmap over parameters to values.

Auto Trait Implementations

impl<'s> RefUnwindSafe for Rfc2045Parser<'s>

impl<'s> Send for Rfc2045Parser<'s>

impl<'s> Sync for Rfc2045Parser<'s>

impl<'s> Unpin for Rfc2045Parser<'s>

impl<'s> UnwindSafe for Rfc2045Parser<'s>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,