pub struct UemActivateParameters {
pub baudrate_card_reader: UemCardBaudrates,
pub baudrate_reader_card: UemCardBaudrates,
pub radio_off_period: u8,
pub pause_after_radio_on: u8,
pub switch_to_tcl: bool,
pub tcl_cid: u8,
pub btype_afi: u8,
pub btype_use_ext_atqb: bool,
pub btype_time_slots: u8,
}Expand description
Card activation parameters
This structure can be used to both activate cards of type ISO14443A and ISO14443B
Fields§
§baudrate_card_reader: UemCardBaudratesRequired baudrate of card -> reader channel
baudrate_reader_card: UemCardBaudratesRequired baudrate of reader -> card channel
radio_off_period: u8Time in milliseconds to turn radio off before requesting next card.
pause_after_radio_on: u8After a radio field has been turned on, it is necessary to give cards little time to fully power up. Set in milliseconds.
switch_to_tcl: boolEnables cards to be automatically switched to T=CL protocol (ISO14443-4)
tcl_cid: u8If switched to T=CL, then which card identifier (CID) to use
btype_afi: u8For cards of type ISO14443B - application family identifier
btype_use_ext_atqb: boolFor cards of type ISO14443B - request extended answer to query data
btype_time_slots: u8For cards of type ISO14443B - number of time slots to use
Trait Implementations§
Source§impl Clone for UemActivateParameters
impl Clone for UemActivateParameters
Source§fn clone(&self) -> UemActivateParameters
fn clone(&self) -> UemActivateParameters
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 UemActivateParameters
impl Debug for UemActivateParameters
Source§impl Default for UemActivateParameters
impl Default for UemActivateParameters
Source§fn default() -> UemActivateParameters
fn default() -> UemActivateParameters
Returns the “default value” for a type. Read more
impl Copy for UemActivateParameters
Auto Trait Implementations§
impl Freeze for UemActivateParameters
impl RefUnwindSafe for UemActivateParameters
impl Send for UemActivateParameters
impl Sync for UemActivateParameters
impl Unpin for UemActivateParameters
impl UnwindSafe for UemActivateParameters
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