[][src]Struct ieee802154::mac::command::GuaranteedTimeSlotCharacteristics

pub struct GuaranteedTimeSlotCharacteristics {
    pub count: u8,
    pub receive_only: bool,
    pub allocation: bool,
}

Guaranteed time slot characteristics

GTS configuration requested with the guaranteed time slot request command.

Fields

count: u8

Number of slots requested

receive_only: bool

Receive only slots, otherwise transmit

allocation: bool

Request type, Allocate or de-allocate

Trait Implementations

impl Clone for GuaranteedTimeSlotCharacteristics[src]

impl Copy for GuaranteedTimeSlotCharacteristics[src]

impl Debug for GuaranteedTimeSlotCharacteristics[src]

impl Eq for GuaranteedTimeSlotCharacteristics[src]

impl From<GuaranteedTimeSlotCharacteristics> for u8[src]

impl From<u8> for GuaranteedTimeSlotCharacteristics[src]

impl Hash for GuaranteedTimeSlotCharacteristics[src]

impl PartialEq<GuaranteedTimeSlotCharacteristics> for GuaranteedTimeSlotCharacteristics[src]

impl StructuralEq for GuaranteedTimeSlotCharacteristics[src]

impl StructuralPartialEq for GuaranteedTimeSlotCharacteristics[src]

Auto Trait Implementations

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> 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.