[][src]Struct melib::backends::maildir::MaildirOp

pub struct MaildirOp {
    hash_index: HashIndexes,
    mailbox_hash: MailboxHash,
    hash: EnvelopeHash,
    slice: Option<Vec<u8>>,
}

BackendOp implementor for Maildir

Fields

hash_index: HashIndexesmailbox_hash: MailboxHashhash: EnvelopeHashslice: Option<Vec<u8>>

Implementations

impl MaildirOp[src]

pub fn new(
    hash: EnvelopeHash,
    hash_index: HashIndexes,
    mailbox_hash: MailboxHash
) -> Self
[src]

fn path(&self) -> Result<PathBuf>[src]

Trait Implementations

impl<'a> BackendOp for MaildirOp[src]

impl Clone for MaildirOp[src]

impl Debug for MaildirOp[src]

Auto Trait Implementations

impl RefUnwindSafe for MaildirOp

impl Send for MaildirOp

impl Sync for MaildirOp

impl Unpin for MaildirOp

impl UnwindSafe for MaildirOp

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> Instrument 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.

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

impl<T> WithSubscriber for T[src]