[][src]Struct in3_sys::d_iterator

#[repr(C)]pub struct d_iterator {
    pub token: *mut d_token_t,
    pub left: c_int,
}

iterator over elements of a array opf object.

usage:

for (d_iterator_t iter = d_iter( parent ); iter.left ; d_iter_next(&iter)) {
  uint32_t val = d_int(iter.token);
}

Fields

token: *mut d_token_t

< current token

left: c_int

< number of result left

Trait Implementations

impl Clone for d_iterator[src]

impl Copy for d_iterator[src]

impl Debug for d_iterator[src]

Auto Trait Implementations

impl !Send for d_iterator

impl !Sync for d_iterator

impl Unpin for d_iterator

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, 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.