#[repr(C)]pub struct MfClassicPollerEventDataReadSectorRequest {
pub sector_num: u8,
pub key: MfClassicKey,
pub key_type: MfClassicKeyType,
pub key_provided: bool,
}Expand description
MfClassic poller read sector request event data.
The instance of this structure must be filled on MfClassicPollerEventTypeRequestReadSector event.
Fields§
§sector_num: u8< Sector number to be read.
key: MfClassicKey< Key to be used by poller.
key_type: MfClassicKeyType< Key type to be used by poller.
key_provided: bool< Flag indicating if key is provided.
Trait Implementations§
Source§impl Clone for MfClassicPollerEventDataReadSectorRequest
impl Clone for MfClassicPollerEventDataReadSectorRequest
Source§fn clone(&self) -> MfClassicPollerEventDataReadSectorRequest
fn clone(&self) -> MfClassicPollerEventDataReadSectorRequest
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 MfClassicPollerEventDataReadSectorRequest
Auto Trait Implementations§
impl Freeze for MfClassicPollerEventDataReadSectorRequest
impl RefUnwindSafe for MfClassicPollerEventDataReadSectorRequest
impl Send for MfClassicPollerEventDataReadSectorRequest
impl Sync for MfClassicPollerEventDataReadSectorRequest
impl Unpin for MfClassicPollerEventDataReadSectorRequest
impl UnwindSafe for MfClassicPollerEventDataReadSectorRequest
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