pub struct ApplicationConfig {
pub max_apdu_length: u16,
pub segmentation: Segmentation,
pub apdu_timeout: u16,
pub apdu_retries: u8,
pub max_segments: u8,
pub invoke_id_start: u8,
}Expand description
Application layer configuration
Fields§
§max_apdu_length: u16Maximum APDU length
segmentation: SegmentationSegmentation support
apdu_timeout: u16APDU timeout (milliseconds)
apdu_retries: u8Number of APDU retries
max_segments: u8Maximum segments accepted
invoke_id_start: u8Invoke ID start value
Trait Implementations§
Source§impl Clone for ApplicationConfig
impl Clone for ApplicationConfig
Source§fn clone(&self) -> ApplicationConfig
fn clone(&self) -> ApplicationConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ApplicationConfig
impl Debug for ApplicationConfig
Auto Trait Implementations§
impl Freeze for ApplicationConfig
impl RefUnwindSafe for ApplicationConfig
impl Send for ApplicationConfig
impl Sync for ApplicationConfig
impl Unpin for ApplicationConfig
impl UnsafeUnpin for ApplicationConfig
impl UnwindSafe for ApplicationConfig
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