[][src]Struct io::Data

pub struct Data<R: Read<T>, T: Copy>(_, _);

Trait Implementations

impl<R: Clone + Read<T>, T: Clone + Copy> Clone for Data<R, T>[src]

impl<R: Copy + Read<T>, T: Copy> Copy for Data<R, T>[src]

impl<R: Debug + Read<T>, T: Debug + Copy> Debug for Data<R, T>[src]

impl<R: Read<T>, T: Copy> Deref for Data<R, T>[src]

type Target = R

The resulting type after dereferencing.

impl<R: Read<T>, T: Copy> DerefMut for Data<R, T>[src]

impl<R: Eq + Read<T>, T: Eq + Copy> Eq for Data<R, T>[src]

impl<R: Hash + Read<T>, T: Hash + Copy> Hash for Data<R, T>[src]

impl<R: Read<T>, T: Copy> Iterator for Data<R, T>[src]

type Item = Result<T, R::Err>

The type of the elements being iterated over.

impl<R: Ord + Read<T>, T: Ord + Copy> Ord for Data<R, T>[src]

impl<R: PartialEq + Read<T>, T: PartialEq + Copy> PartialEq<Data<R, T>> for Data<R, T>[src]

impl<R: PartialOrd + Read<T>, T: PartialOrd + Copy> PartialOrd<Data<R, T>> for Data<R, T>[src]

impl<R: Read<T>, T: Copy> StructuralEq for Data<R, T>[src]

impl<R: Read<T>, T: Copy> StructuralPartialEq for Data<R, T>[src]

Auto Trait Implementations

impl<R, T> Send for Data<R, T> where
    R: Send,
    T: Send

impl<R, T> Sync for Data<R, T> where
    R: Sync,
    T: Sync

impl<R, T> Unpin for Data<R, T> where
    R: Unpin,
    T: Unpin

Blanket Implementations

impl<A, P> Alloc for P where
    A: Alloc + ?Sized,
    P: DerefMut<Target = A>, 
[src]

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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<'a, T, R> Read<T> for R where
    R: DerefMut + ?Sized,
    T: Copy,
    <R as Deref>::Target: Read<T>, 
[src]

type Err = <<R as Deref>::Target as Read<T>>::Err

impl<T> TryClone for T where
    T: Clone

type Error = Void

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<I> TryIterator for I where
    I: Iterator

type Item = <I as Iterator>::Item

type Error = Void

impl<'a, T, W> Write<T> for W where
    T: Copy,
    W: DerefMut + ?Sized,
    <W as Deref>::Target: Write<T>, 
[src]

type Err = <<W as Deref>::Target as Write<T>>::Err