#[repr(C, packed(1))]pub struct IsoPacketHeader {
pub handle: u16,
pub data_load_len: u16,
}
Expand description
HCI ISO Data packet header ๐ IsoPacketHeader
Fieldsยง
ยงhandle: u16
ยงdata_load_len: u16
Implementationsยง
Sourceยงimpl IsoPacketHeader
impl IsoPacketHeader
Sourcepub fn handle(&self) -> ConnHandle
pub fn handle(&self) -> ConnHandle
The identifier of the logical channel between the Host and the Controller.
Sourcepub fn boundary_flag(&self) -> IsoPacketBoundary
pub fn boundary_flag(&self) -> IsoPacketBoundary
The PB_Flag
of the packet
Sourcepub fn has_timestamp(&self) -> bool
pub fn has_timestamp(&self) -> bool
Indicates if the ISO_Data_Load
field contains a Time_Stamp
field.
Sourcepub fn data_load_len(&self) -> usize
pub fn data_load_len(&self) -> usize
The length of the ISO_Data_Load
field in octets.
In the Host to Controller direction, ISO_Data_Load_Length
shall be less than or equal to the size of the
buffer supported by the Controller (which is returned using the ISO_Data_Packet_Length
return parameter of
the LE Read Buffer Size command).
Trait Implementationsยง
Sourceยงimpl ByteAlignedValue for IsoPacketHeader
impl ByteAlignedValue for IsoPacketHeader
Sourceยงfn ref_from_hci_bytes(data: &[u8]) -> Result<(&Self, &[u8]), FromHciBytesError>
fn ref_from_hci_bytes(data: &[u8]) -> Result<(&Self, &[u8]), FromHciBytesError>
Obtain a reference to this type from a byte slice. Read more
Sourceยงimpl Clone for IsoPacketHeader
impl Clone for IsoPacketHeader
Sourceยงfn clone(&self) -> IsoPacketHeader
fn clone(&self) -> IsoPacketHeader
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 IsoPacketHeader
impl Debug for IsoPacketHeader
Sourceยงimpl FixedSizeValue for IsoPacketHeader
impl FixedSizeValue for IsoPacketHeader
Sourceยงimpl<'de> FromHciBytes<'de> for &'de IsoPacketHeader
impl<'de> FromHciBytes<'de> for &'de IsoPacketHeader
Sourceยงfn from_hci_bytes(
data: &'de [u8],
) -> Result<(Self, &'de [u8]), FromHciBytesError>
fn from_hci_bytes( data: &'de [u8], ) -> Result<(Self, &'de [u8]), FromHciBytesError>
Deserialize bytes into a HCI type, return additional bytes.
Sourceยงfn from_hci_bytes_complete(data: &'de [u8]) -> Result<Self, FromHciBytesError>
fn from_hci_bytes_complete(data: &'de [u8]) -> Result<Self, FromHciBytesError>
Deserialize bytes into a HCI type, must consume all bytes.
Sourceยงimpl Hash for IsoPacketHeader
impl Hash for IsoPacketHeader
Sourceยงimpl Ord for IsoPacketHeader
impl Ord for IsoPacketHeader
Sourceยงfn cmp(&self, other: &IsoPacketHeader) -> Ordering
fn cmp(&self, other: &IsoPacketHeader) -> Ordering
1.21.0 ยท 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 IsoPacketHeader
impl PartialEq for IsoPacketHeader
Sourceยงimpl PartialOrd for IsoPacketHeader
impl PartialOrd for IsoPacketHeader
impl Copy for IsoPacketHeader
impl Eq for IsoPacketHeader
impl StructuralPartialEq for IsoPacketHeader
Auto Trait Implementationsยง
impl Freeze for IsoPacketHeader
impl RefUnwindSafe for IsoPacketHeader
impl Send for IsoPacketHeader
impl Sync for IsoPacketHeader
impl Unpin for IsoPacketHeader
impl UnwindSafe for IsoPacketHeader
Blanket Implementationsยง
Sourceยงimpl<T> AsHciBytes for Twhere
T: FixedSizeValue,
impl<T> AsHciBytes for Twhere
T: FixedSizeValue,
Sourceยงfn as_hci_bytes(&self) -> &[u8]
fn as_hci_bytes(&self) -> &[u8]
Get the byte representation of this type.
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
Sourceยงimpl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Sourceยงimpl<'de, T> FromHciBytes<'de> for Twhere
T: FixedSizeValue,
impl<'de, T> FromHciBytes<'de> for Twhere
T: FixedSizeValue,
Sourceยงfn from_hci_bytes(data: &'de [u8]) -> Result<(T, &'de [u8]), FromHciBytesError>
fn from_hci_bytes(data: &'de [u8]) -> Result<(T, &'de [u8]), FromHciBytesError>
Deserialize bytes into a HCI type, return additional bytes.
Sourceยงfn from_hci_bytes_complete(data: &'de [u8]) -> Result<Self, FromHciBytesError>
fn from_hci_bytes_complete(data: &'de [u8]) -> Result<Self, FromHciBytesError>
Deserialize bytes into a HCI type, must consume all bytes.
Sourceยงimpl<'de, T> ReadHci<'de> for Twhere
T: FixedSizeValue,
impl<'de, T> ReadHci<'de> for Twhere
T: FixedSizeValue,
Sourceยงconst MAX_LEN: usize = const MAX_LEN: usize = core::mem::size_of::<Self>();
const MAX_LEN: usize = const MAX_LEN: usize = core::mem::size_of::<Self>();
Max length read by this type.
Sourceยงfn read_hci<R>(
reader: R,
buf: &'de mut [u8],
) -> Result<T, ReadHciError<<R as ErrorType>::Error>>where
R: Read,
fn read_hci<R>(
reader: R,
buf: &'de mut [u8],
) -> Result<T, ReadHciError<<R as ErrorType>::Error>>where
R: Read,
Read this type from the provided reader.
Sourceยงasync fn read_hci_async<R>(
reader: R,
buf: &'de mut [u8],
) -> Result<T, ReadHciError<<R as ErrorType>::Error>>where
R: Read,
async fn read_hci_async<R>(
reader: R,
buf: &'de mut [u8],
) -> Result<T, ReadHciError<<R as ErrorType>::Error>>where
R: Read,
Read this type from the provided reader, async version.