#[repr(C)]pub struct sc_apdu {Show 19 fields
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_int§cla: c_uchar§ins: c_uchar§p1: c_uchar§p2: c_uchar§lc: size_t§le: size_t§data: *const c_uchar§datalen: size_t§resp: *mut c_uchar§resplen: size_t§control: c_uchar§allocation_flags: c_uint§sw1: c_uint§sw2: c_uint§mac: [c_uchar; 8]§mac_len: size_t§flags: c_ulong§next: *mut sc_apduTrait Implementations§
Auto Trait Implementations§
impl Freeze for sc_apdu
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§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more