Struct SimPersonalInfo
#[repr(C)]pub struct SimPersonalInfo {
pub network: NwPersonalInfo,
pub msin_len: u32,
pub msin: [c_char; 10],
}Fields§
§network: NwPersonalInfoMCC and MNC network information.
msin_len: u32Must be set to the number of elements in MSIN.
msin: [c_char; 10]MSIN value stored on the card in ASCII characters.
Trait Implementations§
§impl Clone for SimPersonalInfo
impl Clone for SimPersonalInfo
§fn clone(&self) -> SimPersonalInfo
fn clone(&self) -> SimPersonalInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SimPersonalInfo
Auto Trait Implementations§
impl Freeze for SimPersonalInfo
impl RefUnwindSafe for SimPersonalInfo
impl Send for SimPersonalInfo
impl Sync for SimPersonalInfo
impl Unpin for SimPersonalInfo
impl UnwindSafe for SimPersonalInfo
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