pub struct ExternalApplicationAuthorisationDescriptor {
pub entries: Vec<ExternalAppEntry>,
}Expand description
External Application Authorisation Descriptor (AIT tag 0x05).
Fields§
§entries: Vec<ExternalAppEntry>Authorised external applications in wire order.
Trait Implementations§
Source§impl Clone for ExternalApplicationAuthorisationDescriptor
impl Clone for ExternalApplicationAuthorisationDescriptor
Source§fn clone(&self) -> ExternalApplicationAuthorisationDescriptor
fn clone(&self) -> ExternalApplicationAuthorisationDescriptor
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> DescriptorDef<'a> for ExternalApplicationAuthorisationDescriptor
impl<'a> DescriptorDef<'a> for ExternalApplicationAuthorisationDescriptor
impl Eq for ExternalApplicationAuthorisationDescriptor
Source§impl<'a> From<ExternalApplicationAuthorisationDescriptor> for AnyAitDescriptor<'a>
impl<'a> From<ExternalApplicationAuthorisationDescriptor> for AnyAitDescriptor<'a>
Source§fn from(d: ExternalApplicationAuthorisationDescriptor) -> Self
fn from(d: ExternalApplicationAuthorisationDescriptor) -> Self
Converts to this type from the input type.
Source§impl<'a> Parse<'a> for ExternalApplicationAuthorisationDescriptor
impl<'a> Parse<'a> for ExternalApplicationAuthorisationDescriptor
Source§impl PartialEq for ExternalApplicationAuthorisationDescriptor
impl PartialEq for ExternalApplicationAuthorisationDescriptor
Source§fn eq(&self, other: &ExternalApplicationAuthorisationDescriptor) -> bool
fn eq(&self, other: &ExternalApplicationAuthorisationDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExternalApplicationAuthorisationDescriptor
impl Serialize for ExternalApplicationAuthorisationDescriptor
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.impl StructuralPartialEq for ExternalApplicationAuthorisationDescriptor
Auto Trait Implementations§
impl Freeze for ExternalApplicationAuthorisationDescriptor
impl RefUnwindSafe for ExternalApplicationAuthorisationDescriptor
impl Send for ExternalApplicationAuthorisationDescriptor
impl Sync for ExternalApplicationAuthorisationDescriptor
impl Unpin for ExternalApplicationAuthorisationDescriptor
impl UnsafeUnpin for ExternalApplicationAuthorisationDescriptor
impl UnwindSafe for ExternalApplicationAuthorisationDescriptor
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