pub struct ApplicationProfile {
pub profile: u16,
pub version_major: u8,
pub version_minor: u8,
pub version_micro: u8,
}Expand description
One application profile entry — Table 4.
Fields§
§profile: u1616-bit application profile identifier.
version_major: u8Major version.
version_minor: u8Minor version.
version_micro: u8Micro version.
Trait Implementations§
Source§impl Clone for ApplicationProfile
impl Clone for ApplicationProfile
Source§fn clone(&self) -> ApplicationProfile
fn clone(&self) -> ApplicationProfile
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 ApplicationProfile
impl Debug for ApplicationProfile
impl Eq for ApplicationProfile
Source§impl PartialEq for ApplicationProfile
impl PartialEq for ApplicationProfile
Source§fn eq(&self, other: &ApplicationProfile) -> bool
fn eq(&self, other: &ApplicationProfile) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ApplicationProfile
impl Serialize for ApplicationProfile
impl StructuralPartialEq for ApplicationProfile
Auto Trait Implementations§
impl Freeze for ApplicationProfile
impl RefUnwindSafe for ApplicationProfile
impl Send for ApplicationProfile
impl Sync for ApplicationProfile
impl Unpin for ApplicationProfile
impl UnsafeUnpin for ApplicationProfile
impl UnwindSafe for ApplicationProfile
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