#[repr(C)]pub struct MfUltralightPollerAuthContext {
pub password: MfUltralightAuthPassword,
pub tdes_key: MfUltralightC3DesAuthKey,
pub pack: MfUltralightAuthPack,
pub auth_success: bool,
pub skip_auth: bool,
}Expand description
MfUltralight poller authentication context.
Fields§
§password: MfUltralightAuthPassword< Password to be used for authentication.
tdes_key: MfUltralightC3DesAuthKey< 3DES key to be used for authentication.
pack: MfUltralightAuthPack< Pack received on successful authentication.
auth_success: bool< Set to true if authentication succeeded, false otherwise.
skip_auth: bool< Set to true if authentication should be skipped, false otherwise.
Trait Implementations§
Source§impl Clone for MfUltralightPollerAuthContext
impl Clone for MfUltralightPollerAuthContext
Source§fn clone(&self) -> MfUltralightPollerAuthContext
fn clone(&self) -> MfUltralightPollerAuthContext
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 MfUltralightPollerAuthContext
Auto Trait Implementations§
impl Freeze for MfUltralightPollerAuthContext
impl RefUnwindSafe for MfUltralightPollerAuthContext
impl Send for MfUltralightPollerAuthContext
impl Sync for MfUltralightPollerAuthContext
impl Unpin for MfUltralightPollerAuthContext
impl UnwindSafe for MfUltralightPollerAuthContext
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