#[repr(C)]pub struct FelicaAuthentication {
pub des_context: mbedtls_des3_context,
pub session_key: FelicaSessionKey,
pub context: FelicaAuthenticationContext,
}Expand description
Structure used to hold authentication related fields.
Fields§
§des_context: mbedtls_des3_context< Context for mbedtls des functions.
session_key: FelicaSessionKey< Calculated session key.
context: FelicaAuthenticationContext< Public auth context provided to upper levels.
Trait Implementations§
Source§impl Clone for FelicaAuthentication
impl Clone for FelicaAuthentication
Source§fn clone(&self) -> FelicaAuthentication
fn clone(&self) -> FelicaAuthentication
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 moreSource§impl Debug for FelicaAuthentication
impl Debug for FelicaAuthentication
impl Copy for FelicaAuthentication
Auto Trait Implementations§
impl Freeze for FelicaAuthentication
impl RefUnwindSafe for FelicaAuthentication
impl Send for FelicaAuthentication
impl Sync for FelicaAuthentication
impl Unpin for FelicaAuthentication
impl UnwindSafe for FelicaAuthentication
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