[][src]Struct capnp::any_pointer_list::Reader

pub struct Reader<'a> {
    pub reader: ListReader<'a>,
}

Fields

reader: ListReader<'a>

Methods

impl<'a> Reader<'a>[src]

pub fn new<'b>(reader: ListReader<'b>) -> Reader<'b>[src]

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

Important traits for ListIter<T, U>
pub fn iter(self) -> ListIter<Reader<'a>, Result<Reader<'a>>>[src]

pub fn get(self, index: u32) -> Reader<'a>[src]

Trait Implementations

impl<'a> IntoInternalListReader<'a> for Reader<'a>[src]

impl<'a> FromPointerReader<'a> for Reader<'a>[src]

impl<'a> SetPointerBuilder<Builder<'a>> for Reader<'a>[src]

impl<'a> IndexMove<u32, Result<Reader<'a>, Error>> for Reader<'a>[src]

impl<'a> Copy for Reader<'a>[src]

impl<'a> Clone for Reader<'a>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> IntoIterator for Reader<'a>[src]

type Item = Result<Reader<'a>>

The type of the elements being iterated over.

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

Which kind of iterator are we turning this into?

Auto Trait Implementations

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

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

Blanket Implementations

impl<T, U> Into 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> From for 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<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> Any for T where
    T: 'static + ?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.