Struct UimSendApduLongResponseChunkType
#[repr(C)]pub struct UimSendApduLongResponseChunkType {
pub token: u32,
pub total_length: u16,
pub offset: u16,
pub apdu_len: u32,
pub apdu: [u8; 1024],
}👎Deprecated since 0.2.0: Use ‘mcm::sim’ module instead.
Fields§
§token: u32👎Deprecated since 0.2.0: Use ‘mcm::sim’ module instead.
Unique token used in the previous QMI_UIM_SEND_APDU response.
total_length: u16👎Deprecated since 0.2.0: Use ‘mcm::sim’ module instead.
Total length of the response APDU from the card.
offset: u16👎Deprecated since 0.2.0: Use ‘mcm::sim’ module instead.
Offset of the current chunk, starting from 0.
apdu_len: u32👎Deprecated since 0.2.0: Use ‘mcm::sim’ module instead.
Must be set to # of elements in apdu
apdu: [u8; 1024]👎Deprecated since 0.2.0: Use ‘mcm::sim’ module instead.
Content of the data chunk of the APDU response from the card.
Auto Trait Implementations§
impl Freeze for UimSendApduLongResponseChunkType
impl RefUnwindSafe for UimSendApduLongResponseChunkType
impl Send for UimSendApduLongResponseChunkType
impl Sync for UimSendApduLongResponseChunkType
impl Unpin for UimSendApduLongResponseChunkType
impl UnwindSafe for UimSendApduLongResponseChunkType
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