[][src]Struct imap::types::ZeroCopy

pub struct ZeroCopy<D> { /* fields omitted */ }

This type wraps an input stream and a type that was constructed by parsing that input stream, which allows the parsed type to refer to data in the underlying stream instead of copying it.

Any references given out by a ZeroCopy should never be used after the ZeroCopy is dropped.

Trait Implementations

impl<D: PartialEq> PartialEq<ZeroCopy<D>> for ZeroCopy<D>[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl<D: Ord> Ord for ZeroCopy<D>[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl<D: Eq> Eq for ZeroCopy<D>[src]

impl<D: PartialOrd> PartialOrd<ZeroCopy<D>> for ZeroCopy<D>[src]

impl<'a, D> IntoIterator for &'a ZeroCopy<D> where
    &'a D: IntoIterator
[src]

type Item = <&'a D as IntoIterator>::Item

The type of the elements being iterated over.

type IntoIter = <&'a D as IntoIterator>::IntoIter

Which kind of iterator are we turning this into?

impl<D> Deref for ZeroCopy<D>[src]

type Target = D

The resulting type after dereferencing.

impl<D: Debug> Debug for ZeroCopy<D>[src]

impl<D: Display> Display for ZeroCopy<D>[src]

impl<D: Hash> Hash for ZeroCopy<D>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl<D> Send for ZeroCopy<D> where
    D: Send

impl<D> Sync for ZeroCopy<D> where
    D: Sync

Blanket Implementations

impl<T> From for T[src]

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]