[][src]Struct gvariant::NonFixedWidthArrayIterator

pub struct NonFixedWidthArrayIterator<'a, Item: Cast + ?Sized> { /* fields omitted */ }

A iterator over the items of a NonFixedWidthArray

This struct is created by the iter method on NonFixedWidthArray. See its documentation for more.

Trait Implementations

impl<'a, Item: Cast + ?Sized> ExactSizeIterator for NonFixedWidthArrayIterator<'a, Item>[src]

impl<'a, Item: Cast + 'static + ?Sized> Iterator for NonFixedWidthArrayIterator<'a, Item>[src]

type Item = &'a Item

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, Item: ?Sized> RefUnwindSafe for NonFixedWidthArrayIterator<'a, Item> where
    <Item as AlignOf>::AlignOf: RefUnwindSafe

impl<'a, Item: ?Sized> Send for NonFixedWidthArrayIterator<'a, Item> where
    <Item as AlignOf>::AlignOf: Sync

impl<'a, Item: ?Sized> Sync for NonFixedWidthArrayIterator<'a, Item> where
    <Item as AlignOf>::AlignOf: Sync

impl<'a, Item: ?Sized> Unpin for NonFixedWidthArrayIterator<'a, Item>

impl<'a, Item: ?Sized> UnwindSafe for NonFixedWidthArrayIterator<'a, Item> where
    <Item as AlignOf>::AlignOf: RefUnwindSafe

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<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<GvT, It> SerializeTo<[GvT]> for It where
    GvT: Cast + Copy,
    It: IntoIterator,
    <It as IntoIterator>::Item: SerializeTo<GvT>, 
[src]

impl<GvT, T> SerializeTo<MaybeNonFixedSize<GvT>> for T where
    GvT: Cast + ?Sized,
    T: IntoIterator,
    <T as IntoIterator>::Item: SerializeTo<GvT>, 
[src]

impl<GvT, It> SerializeTo<NonFixedWidthArray<GvT>> for It where
    GvT: Cast + ?Sized,
    It: IntoIterator,
    <It as IntoIterator>::Item: SerializeTo<GvT>, 
[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.