pub struct AitApplication<'a> {
pub identifier: ApplicationIdentifier,
pub control_code: u8,
pub descriptors: DescriptorLoop<'a>,
}Expand description
One application entry in the AIT application loop.
Fields§
§identifier: ApplicationIdentifierApplication identifier.
control_code: u8Application control code (1 = autostart, etc.).
descriptors: DescriptorLoop<'a>Raw descriptor bytes for this application.
Per-application descriptor loop. Serializes as the typed descriptor
sequence; .raw() yields the wire bytes.
Trait Implementations§
Source§impl<'a> Clone for AitApplication<'a>
impl<'a> Clone for AitApplication<'a>
Source§fn clone(&self) -> AitApplication<'a>
fn clone(&self) -> AitApplication<'a>
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<'a> Debug for AitApplication<'a>
impl<'a> Debug for AitApplication<'a>
impl<'a> Eq for AitApplication<'a>
Source§impl<'a> PartialEq for AitApplication<'a>
impl<'a> PartialEq for AitApplication<'a>
Source§fn eq(&self, other: &AitApplication<'a>) -> bool
fn eq(&self, other: &AitApplication<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for AitApplication<'a>
impl<'a> Serialize for AitApplication<'a>
impl<'a> StructuralPartialEq for AitApplication<'a>
Source§impl<'a> Yokeable<'a> for AitApplication<'static>
impl<'a> Yokeable<'a> for AitApplication<'static>
Source§type Output = AitApplication<'a>
type Output = AitApplication<'a>
This type MUST be
Self with the 'static replaced with 'a, i.e. Self<'a>Source§fn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
Auto Trait Implementations§
impl<'a> Freeze for AitApplication<'a>
impl<'a> RefUnwindSafe for AitApplication<'a>
impl<'a> Send for AitApplication<'a>
impl<'a> Sync for AitApplication<'a>
impl<'a> Unpin for AitApplication<'a>
impl<'a> UnsafeUnpin for AitApplication<'a>
impl<'a> UnwindSafe for AitApplication<'a>
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