Struct GbaImpi
#[repr(C)]pub struct GbaImpi {
pub impi_len: u32,
pub impi: [c_char; 255],
pub encrypted_impi_len: u32,
pub encrypted_impi: [u8; 1024],
}Fields§
§impi_len: u32Number of elements in impi, 0 if invalid.
impi: [c_char; 255]Private user identity used for the GBA procedure specified in 3GPP TS 33.220.
encrypted_impi_len: u32Number of elements in encrypted_impi, 0 if invalid.
encrypted_impi: [u8; 1024]Encrypted version of the IMPI.
Auto Trait Implementations§
impl Freeze for GbaImpi
impl RefUnwindSafe for GbaImpi
impl Send for GbaImpi
impl Sync for GbaImpi
impl Unpin for GbaImpi
impl UnwindSafe for GbaImpi
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