[][src]Struct opensc_sys::list_t

#[repr(C)]pub struct list_t {
    pub head_sentinel: *mut list_entry_s,
    pub tail_sentinel: *mut list_entry_s,
    pub mid: *mut list_entry_s,
    pub numels: c_uint,
    pub spareels: *mut *mut list_entry_s,
    pub spareelsnum: c_uint,
    pub iter_active: c_int,
    pub iter_pos: c_uint,
    pub iter_curentry: *mut list_entry_s,
    pub attrs: list_attributes_s,
}

list object

Fields

head_sentinel: *mut list_entry_stail_sentinel: *mut list_entry_smid: *mut list_entry_snumels: c_uintspareels: *mut *mut list_entry_sspareelsnum: c_uintiter_active: c_intiter_pos: c_uintiter_curentry: *mut list_entry_sattrs: list_attributes_s

Trait Implementations

impl Clone for list_t[src]

impl Copy for list_t[src]

impl Debug for list_t[src]

Auto Trait Implementations

impl RefUnwindSafe for list_t

impl !Send for list_t

impl !Sync for list_t

impl Unpin for list_t

impl UnwindSafe for list_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.