pub enum IsoPacketStatus {
Correct,
PossiblyInvalid,
PartiallyLost,
}Expand description
HCI ISO Data packet Packet_Status_Flag ๐
Variantsยง
Correct
Valid data. The complete SDU was received correctly.
PossiblyInvalid
Possibly invalid data. The contents of the ISO_SDU_Fragment may contain errors or part of the SDU may be missing. This is reported as โdata with possible errorsโ.
PartiallyLost
Part(s) of the SDU were not received correctly. This is reported as โlost dataโ.
Trait Implementationsยง
Sourceยงimpl Clone for IsoPacketStatus
impl Clone for IsoPacketStatus
Sourceยงfn clone(&self) -> IsoPacketStatus
fn clone(&self) -> IsoPacketStatus
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 IsoPacketStatus
impl Debug for IsoPacketStatus
Sourceยงimpl Hash for IsoPacketStatus
impl Hash for IsoPacketStatus
Sourceยงimpl Ord for IsoPacketStatus
impl Ord for IsoPacketStatus
Sourceยงfn cmp(&self, other: &IsoPacketStatus) -> Ordering
fn cmp(&self, other: &IsoPacketStatus) -> Ordering
1.21.0 (const: unstable) ยท Sourceยงfn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Sourceยงimpl PartialEq for IsoPacketStatus
impl PartialEq for IsoPacketStatus
Sourceยงfn eq(&self, other: &IsoPacketStatus) -> bool
fn eq(&self, other: &IsoPacketStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Sourceยงimpl PartialOrd for IsoPacketStatus
impl PartialOrd for IsoPacketStatus
impl Copy for IsoPacketStatus
impl Eq for IsoPacketStatus
impl StructuralPartialEq for IsoPacketStatus
Auto Trait Implementationsยง
impl Freeze for IsoPacketStatus
impl RefUnwindSafe for IsoPacketStatus
impl Send for IsoPacketStatus
impl Sync for IsoPacketStatus
impl Unpin for IsoPacketStatus
impl UnsafeUnpin for IsoPacketStatus
impl UnwindSafe for IsoPacketStatus
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