[][src]Struct opensc_sys::sc_apdu

#[repr(C)]pub struct sc_apdu {
    pub cse: c_int,
    pub cla: c_uchar,
    pub ins: c_uchar,
    pub p1: c_uchar,
    pub p2: c_uchar,
    pub lc: size_t,
    pub le: size_t,
    pub data: *const c_uchar,
    pub datalen: size_t,
    pub resp: *mut c_uchar,
    pub resplen: size_t,
    pub control: c_uchar,
    pub allocation_flags: c_uint,
    pub sw1: c_uint,
    pub sw2: c_uint,
    pub mac: [c_uchar; 8],
    pub mac_len: size_t,
    pub flags: c_ulong,
    pub next: *mut sc_apdu,
}

Fields

cse: c_intcla: c_ucharins: c_ucharp1: c_ucharp2: c_ucharlc: size_tle: size_tdata: *const c_uchardatalen: size_tresp: *mut c_ucharresplen: size_tcontrol: c_ucharallocation_flags: c_uintsw1: c_uintsw2: c_uintmac: [c_uchar; 8]mac_len: size_tflags: c_ulongnext: *mut sc_apdu

Trait Implementations

impl Clone for sc_apdu[src]

impl Copy for sc_apdu[src]

impl Debug for sc_apdu[src]

Auto Trait Implementations

impl RefUnwindSafe for sc_apdu

impl !Send for sc_apdu

impl !Sync for sc_apdu

impl Unpin for sc_apdu

impl UnwindSafe for sc_apdu

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.