[][src]Struct libgitmail::Patch

pub struct Patch<'mail> {
    pub id: Id,
    pub reply_to: Option<Id>,
    pub subject: Subject,
    pub headers: HeaderMap,
    pub raw: &'mail str,
}

A single patch, metadata and email body

This type is constructed from a single email in a thread, and can then be combined into a PatchSet via the PatchTree builder.

Fields

id: Idreply_to: Option<Id>subject: Subjectheaders: HeaderMapraw: &'mail str

Methods

impl<'mail> Patch<'mail>[src]

pub fn new(raw: &'mail str) -> Result<Self>[src]

Trait Implementations

impl<'mail> Clone for Patch<'mail>[src]

impl<'mail> Debug for Patch<'mail>[src]

impl<'mail> Eq for Patch<'mail>[src]

impl<'mail> PartialEq<Patch<'mail>> for Patch<'mail>[src]

impl<'mail> StructuralEq for Patch<'mail>[src]

impl<'mail> StructuralPartialEq for Patch<'mail>[src]

Auto Trait Implementations

impl<'mail> RefUnwindSafe for Patch<'mail>

impl<'mail> Send for Patch<'mail>

impl<'mail> Sync for Patch<'mail>

impl<'mail> Unpin for Patch<'mail>

impl<'mail> UnwindSafe for Patch<'mail>

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.