Struct UimLogCalChannelType
#[repr(C)]pub struct UimLogCalChannelType {
pub channel_id_valid: u8,
pub channel_id: u8,
pub card_result: UimCardResultType,
pub select_response_valid: u8,
pub select_response_len: u32,
pub select_response: [u8; 255],
}👎Deprecated since 0.2.0: Use ‘mcm::sim’ module instead.
Fields§
§channel_id_valid: u8👎Deprecated since 0.2.0: Use ‘mcm::sim’ module instead.
§channel_id: u8👎Deprecated since 0.2.0: Use ‘mcm::sim’ module instead.
§card_result: UimCardResultType👎Deprecated since 0.2.0: Use ‘mcm::sim’ module instead.
§select_response_valid: u8👎Deprecated since 0.2.0: Use ‘mcm::sim’ module instead.
Must be set to true if select_response is being passed
select_response_len: u32👎Deprecated since 0.2.0: Use ‘mcm::sim’ module instead.
Must be set to # of elements in select_response
select_response: [u8; 255]👎Deprecated since 0.2.0: Use ‘mcm::sim’ module instead.
Auto Trait Implementations§
impl Freeze for UimLogCalChannelType
impl RefUnwindSafe for UimLogCalChannelType
impl Send for UimLogCalChannelType
impl Sync for UimLogCalChannelType
impl Unpin for UimLogCalChannelType
impl UnwindSafe for UimLogCalChannelType
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