[][src]Struct bluetooth_mesh::stack::segments::IncomingPDU

pub struct IncomingPDU<PDU: Copy + Clone> {
    pub pdu: PDU,
    pub seq: SequenceNumber,
    pub iv_index: IVIndex,
    pub net_key_index: NetKeyIndex,
    pub src: UnicastAddress,
    pub dst: Address,
    pub ttl: TTL,
}

Fields

pdu: PDUseq: SequenceNumberiv_index: IVIndexnet_key_index: NetKeyIndexsrc: UnicastAddressdst: Addressttl: TTL

Trait Implementations

impl<PDU: Clone + Copy> Clone for IncomingPDU<PDU>[src]

impl<PDU: Copy + Clone> Copy for IncomingPDU<PDU>[src]

impl<'_, PDU: Copy + Clone + Debug> Debug for &'_ IncomingPDU<PDU>[src]

impl<'_> TryFrom<&'_ IncomingNetworkPDU> for IncomingPDU<SegmentedPDU>[src]

type Error = SegmentsConversionError

The type returned in the event of a conversion error.

impl<'_> TryFrom<&'_ IncomingNetworkPDU> for IncomingPDU<Ack>[src]

type Error = SegmentsConversionError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<PDU> RefUnwindSafe for IncomingPDU<PDU> where
    PDU: RefUnwindSafe

impl<PDU> Send for IncomingPDU<PDU> where
    PDU: Send

impl<PDU> Sync for IncomingPDU<PDU> where
    PDU: Sync

impl<PDU> Unpin for IncomingPDU<PDU> where
    PDU: Unpin

impl<PDU> UnwindSafe for IncomingPDU<PDU> where
    PDU: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,