Struct capnp::capability_list::Reader[][src]

pub struct Reader<'a, T> where
    T: FromClientHook
{ /* fields omitted */ }

Implementations

impl<'a, T> Reader<'a, T> where
    T: FromClientHook
[src]

pub fn len(&self) -> u32[src]

pub fn iter(self) -> ListIter<Reader<'a, T>, Result<T>>

Notable traits for ListIter<T, U>

impl<U, T: IndexMove<u32, U>> Iterator for ListIter<T, U> type Item = U;
[src]

impl<'a, T> Reader<'a, T> where
    T: FromClientHook
[src]

pub fn reborrow<'b>(&'b self) -> Reader<'b, T>[src]

impl<'a, T> Reader<'a, T> where
    T: FromClientHook
[src]

pub fn get(self, index: u32) -> Result<T>[src]

Trait Implementations

impl<'a, T> Clone for Reader<'a, T> where
    T: FromClientHook
[src]

impl<'a, T> Copy for Reader<'a, T> where
    T: FromClientHook
[src]

impl<'a, T> FromPointerReader<'a> for Reader<'a, T> where
    T: FromClientHook
[src]

impl<'a, T> IndexMove<u32, Result<T, Error>> for Reader<'a, T> where
    T: FromClientHook
[src]

impl<'a, T> IntoIterator for Reader<'a, T> where
    T: FromClientHook
[src]

type Item = Result<T>

The type of the elements being iterated over.

type IntoIter = ListIter<Reader<'a, T>, Self::Item>

Which kind of iterator are we turning this into?

impl<'a, T> SetPointerBuilder for Reader<'a, T> where
    T: FromClientHook
[src]

Auto Trait Implementations

impl<'a, T> !RefUnwindSafe for Reader<'a, T>

impl<'a, T> !Send for Reader<'a, T>

impl<'a, T> !Sync for Reader<'a, T>

impl<'a, T> Unpin for Reader<'a, T> where
    T: Unpin

impl<'a, T> !UnwindSafe for Reader<'a, T>

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.