#[repr(C)]pub struct MfClassicPollerEventDataWriteBlockRequest {
pub block_num: u8,
pub write_block: MfClassicBlock,
pub write_block_provided: bool,
}
Expand description
MfClassic poller write block request event data.
The instance of this structure must be filled on MfClassicPollerEventTypeRequestWriteBlock event.
Fields§
§block_num: u8
< Block number to be written.
write_block: MfClassicBlock
< Block to be written.
write_block_provided: bool
< Flag indicating if block is provided.
Trait Implementations§
Source§impl Clone for MfClassicPollerEventDataWriteBlockRequest
impl Clone for MfClassicPollerEventDataWriteBlockRequest
Source§fn clone(&self) -> MfClassicPollerEventDataWriteBlockRequest
fn clone(&self) -> MfClassicPollerEventDataWriteBlockRequest
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 MfClassicPollerEventDataWriteBlockRequest
Auto Trait Implementations§
impl Freeze for MfClassicPollerEventDataWriteBlockRequest
impl RefUnwindSafe for MfClassicPollerEventDataWriteBlockRequest
impl Send for MfClassicPollerEventDataWriteBlockRequest
impl Sync for MfClassicPollerEventDataWriteBlockRequest
impl Unpin for MfClassicPollerEventDataWriteBlockRequest
impl UnwindSafe for MfClassicPollerEventDataWriteBlockRequest
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