#[repr(C)]pub struct MfClassicPollerEventDataUpdate {
pub sectors_read: u8,
pub keys_found: u8,
pub current_sector: u8,
pub nested_phase: MfClassicNestedPhase,
pub prng_type: MfClassicPrngType,
pub backdoor: MfClassicBackdoor,
pub nested_target_key: u16,
pub msb_count: u16,
}Expand description
MfClassic poller update event data.
The instance of this structure is filled by poller and passed with MfClassicPollerEventTypeDataUpdate event.
Fields§
§sectors_read: u8< Number of sectors read.
keys_found: u8< Number of keys found.
current_sector: u8< Current sector number.
nested_phase: MfClassicNestedPhase< Nested attack phase.
prng_type: MfClassicPrngType< PRNG (weak or hard).
backdoor: MfClassicBackdoor< Backdoor type.
nested_target_key: u16< Target key for nested attack.
msb_count: u16< Number of unique most significant bytes seen during Hardnested attack.
Trait Implementations§
Source§impl Clone for MfClassicPollerEventDataUpdate
impl Clone for MfClassicPollerEventDataUpdate
Source§fn clone(&self) -> MfClassicPollerEventDataUpdate
fn clone(&self) -> MfClassicPollerEventDataUpdate
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 MfClassicPollerEventDataUpdate
Auto Trait Implementations§
impl Freeze for MfClassicPollerEventDataUpdate
impl RefUnwindSafe for MfClassicPollerEventDataUpdate
impl Send for MfClassicPollerEventDataUpdate
impl Sync for MfClassicPollerEventDataUpdate
impl Unpin for MfClassicPollerEventDataUpdate
impl UnwindSafe for MfClassicPollerEventDataUpdate
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