#[repr(u8)]pub enum ConformityLevel {
BasicStreamOnly = 1,
RegularStreamOnly = 2,
ExtendedStreamOnly = 3,
BasicStreamAndIndividual = 129,
RegularStreamAndIndividual = 130,
ExtendedStreamAndIndividual = 131,
}Expand description
Conformity Level returned in the response.
Variants§
BasicStreamOnly = 1
Basic identification (stream access only).
RegularStreamOnly = 2
Regular identification (stream access only).
ExtendedStreamOnly = 3
Extended identification (stream access only).
BasicStreamAndIndividual = 129
Basic identification (stream access and individual access).
RegularStreamAndIndividual = 130
Regular identification (stream access and individual access).
ExtendedStreamAndIndividual = 131
Extended identification (stream access and individual access).
Trait Implementations§
Source§impl Clone for ConformityLevel
impl Clone for ConformityLevel
Source§fn clone(&self) -> ConformityLevel
fn clone(&self) -> ConformityLevel
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 ConformityLevel
impl Debug for ConformityLevel
Source§impl PartialEq for ConformityLevel
impl PartialEq for ConformityLevel
Source§impl TryFrom<u8> for ConformityLevel
impl TryFrom<u8> for ConformityLevel
impl Copy for ConformityLevel
impl Eq for ConformityLevel
impl StructuralPartialEq for ConformityLevel
Auto Trait Implementations§
impl Freeze for ConformityLevel
impl RefUnwindSafe for ConformityLevel
impl Send for ConformityLevel
impl Sync for ConformityLevel
impl Unpin for ConformityLevel
impl UnsafeUnpin for ConformityLevel
impl UnwindSafe for ConformityLevel
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