[][src]Struct bdecode::BencodeList

pub struct BencodeList<'a, 't> { /* fields omitted */ }

A bencoded list

Implementations

impl<'a, 't> BencodeList<'a, 't>[src]

pub fn get(&self, index: usize) -> Option<BencodeAny<'a, 't>>[src]

Returns the item in the list at the given index.

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

Returns how many items there are in this list.

pub fn is_empty(&self) -> bool[src]

Returns true if the length of this list is zero.

pub fn iter(&self) -> BencodeListIter<'a, 't>

Notable traits for BencodeListIter<'a, 't>

impl<'a, 't> Iterator for BencodeListIter<'a, 't> type Item = BencodeAny<'a, 't>;
[src]

Returns an iterator over the list's items.

Trait Implementations

impl<'a, 't> Clone for BencodeList<'a, 't>[src]

impl<'a, 't> Debug for BencodeList<'a, 't>[src]

Auto Trait Implementations

impl<'a, 't> !RefUnwindSafe for BencodeList<'a, 't>

impl<'a, 't> Send for BencodeList<'a, 't>

impl<'a, 't> !Sync for BencodeList<'a, 't>

impl<'a, 't> Unpin for BencodeList<'a, 't>

impl<'a, 't> UnwindSafe for BencodeList<'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.