[][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: PartialOrd> PartialOrd<ZeroCopy<D>> for ZeroCopy<D>[src]

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

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

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

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

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.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<'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: 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

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

type Target = D

The resulting type after dereferencing.

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

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

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

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

impl<T> From<T> for 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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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