[−][src]Struct bluetooth_mesh::lower::SegmentedControlPDU
Segmented Control PDU Lengths
| # Packets | PDU Size |
|---|---|
| 1 | 8 |
| 2 | 16 |
| 3 | 24 |
| n | n*8 |
| 32 | 256 |
Methods
impl SegmentedControlPDU[src]
#[must_use]
pub fn new(
opcode: ControlOpcode,
header: SegmentHeader,
data: &[u8]
) -> SegmentedControlPDU[src]
opcode: ControlOpcode,
header: SegmentHeader,
data: &[u8]
) -> SegmentedControlPDU
Panic
Panics if data.len() > MAX_SEGMENTED_CONTROL_PDU_LEN (8)
#[must_use]
pub const fn max_len() -> usize[src]
#[must_use]
pub const fn min_len() -> usize[src]
#[must_use]
pub fn len(&self) -> usize[src]
#[must_use]
pub fn segment_len(&self) -> usize[src]
#[must_use]
pub fn segment_data(&self) -> &[u8][src]
#[must_use]
pub fn segment_data_mut(&mut self) -> &mut [u8][src]
#[must_use]
pub const fn opcode(&self) -> ControlOpcode[src]
#[must_use]
pub const fn header(&self) -> &SegmentHeader[src]
#[must_use]
pub fn pack_into(&self, buffer: &mut [u8])[src]
#[must_use]
pub fn unpack_from(bytes: &[u8]) -> Option<Self>[src]
#[must_use]
pub const fn max_seg_len() -> usize[src]
Trait Implementations
impl Clone for SegmentedControlPDU[src]
fn clone(&self) -> SegmentedControlPDU[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for SegmentedControlPDU[src]
impl Debug for SegmentedControlPDU[src]
impl Eq for SegmentedControlPDU[src]
impl Hash for SegmentedControlPDU[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl Ord for SegmentedControlPDU[src]
fn cmp(&self, other: &SegmentedControlPDU) -> Ordering[src]
#[must_use]
fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]
fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]
fn clamp(self, min: Self, max: Self) -> Self[src]
impl PartialEq<SegmentedControlPDU> for SegmentedControlPDU[src]
fn eq(&self, other: &SegmentedControlPDU) -> bool[src]
fn ne(&self, other: &SegmentedControlPDU) -> bool[src]
impl PartialOrd<SegmentedControlPDU> for SegmentedControlPDU[src]
fn partial_cmp(&self, other: &SegmentedControlPDU) -> Option<Ordering>[src]
fn lt(&self, other: &SegmentedControlPDU) -> bool[src]
fn le(&self, other: &SegmentedControlPDU) -> bool[src]
fn gt(&self, other: &SegmentedControlPDU) -> bool[src]
fn ge(&self, other: &SegmentedControlPDU) -> bool[src]
impl StructuralEq for SegmentedControlPDU[src]
impl StructuralPartialEq for SegmentedControlPDU[src]
Auto Trait Implementations
impl RefUnwindSafe for SegmentedControlPDU
impl Send for SegmentedControlPDU
impl Sync for SegmentedControlPDU
impl Unpin for SegmentedControlPDU
impl UnwindSafe for SegmentedControlPDU
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,