Struct UimSendApduResponseType
#[repr(C)]pub struct UimSendApduResponseType {
pub apdu_valid: u8,
pub apdu_len: u32,
pub apdu: [u8; 1024],
pub long_response_valid: u8,
pub long_response: UimSendApduLongResponseChunkType,
}👎Deprecated since 0.2.0: Use ‘mcm::sim’ module instead.
Fields§
§apdu_valid: u8👎Deprecated since 0.2.0: Use ‘mcm::sim’ module instead.
§apdu_len: u32👎Deprecated since 0.2.0: Use ‘mcm::sim’ module instead.
§apdu: [u8; 1024]👎Deprecated since 0.2.0: Use ‘mcm::sim’ module instead.
§long_response_valid: u8👎Deprecated since 0.2.0: Use ‘mcm::sim’ module instead.
§long_response: UimSendApduLongResponseChunkType👎Deprecated since 0.2.0: Use ‘mcm::sim’ module instead.
Auto Trait Implementations§
impl Freeze for UimSendApduResponseType
impl RefUnwindSafe for UimSendApduResponseType
impl Send for UimSendApduResponseType
impl Sync for UimSendApduResponseType
impl Unpin for UimSendApduResponseType
impl UnwindSafe for UimSendApduResponseType
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