pub enum AWDLTLVType {
Show 13 variants
Null,
ServiceResponse,
SynchronizationParameters,
ElectionParameters,
HTCapabilities,
DataPathState,
Arpa,
IEEE80211Container,
ChannelSequence,
SynchronizationTree,
Version,
ElectionParametersV2,
Unknown(u8),
}Expand description
The type of the TLV.
Variants§
Null
Required for tlv-rs.
ServiceResponse
The service parameters.
SynchronizationParameters
The synchronization parameters.
ElectionParameters
The election parameters.
HTCapabilities
The HT capabilities.
DataPathState
The data path state.
Arpa
The hostname of the peer.
IEEE80211Container
The VHT capabilities.
ChannelSequence
The channel sequence.
SynchronizationTree
The synchronization tree.
Version
The actual version of the AWDL protocol, that’s being used.
ElectionParametersV2
The V2 Election Parameters.
Unknown(u8)
Implementations§
Trait Implementations§
Source§impl Clone for AWDLTLVType
impl Clone for AWDLTLVType
Source§fn clone(&self) -> AWDLTLVType
fn clone(&self) -> AWDLTLVType
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 AWDLTLVType
impl Debug for AWDLTLVType
Source§impl Default for AWDLTLVType
impl Default for AWDLTLVType
Source§fn default() -> AWDLTLVType
fn default() -> AWDLTLVType
Returns the “default value” for a type. Read more
Source§impl From<AWDLTLVType> for u128
impl From<AWDLTLVType> for u128
Source§fn from(value: AWDLTLVType) -> Self
fn from(value: AWDLTLVType) -> Self
Converts to this type from the input type.
Source§impl From<AWDLTLVType> for u16
impl From<AWDLTLVType> for u16
Source§fn from(value: AWDLTLVType) -> Self
fn from(value: AWDLTLVType) -> Self
Converts to this type from the input type.
Source§impl From<AWDLTLVType> for u32
impl From<AWDLTLVType> for u32
Source§fn from(value: AWDLTLVType) -> Self
fn from(value: AWDLTLVType) -> Self
Converts to this type from the input type.
Source§impl From<AWDLTLVType> for u64
impl From<AWDLTLVType> for u64
Source§fn from(value: AWDLTLVType) -> Self
fn from(value: AWDLTLVType) -> Self
Converts to this type from the input type.
Source§impl From<AWDLTLVType> for u8
impl From<AWDLTLVType> for u8
Source§fn from(value: AWDLTLVType) -> Self
fn from(value: AWDLTLVType) -> Self
Converts to this type from the input type.
Source§impl From<u128> for AWDLTLVType
impl From<u128> for AWDLTLVType
Source§impl From<u16> for AWDLTLVType
impl From<u16> for AWDLTLVType
Source§impl From<u32> for AWDLTLVType
impl From<u32> for AWDLTLVType
Source§impl From<u64> for AWDLTLVType
impl From<u64> for AWDLTLVType
Source§impl From<u8> for AWDLTLVType
impl From<u8> for AWDLTLVType
Source§impl Hash for AWDLTLVType
impl Hash for AWDLTLVType
Source§impl PartialEq for AWDLTLVType
impl PartialEq for AWDLTLVType
impl Copy for AWDLTLVType
impl Eq for AWDLTLVType
impl StructuralPartialEq for AWDLTLVType
Auto Trait Implementations§
impl Freeze for AWDLTLVType
impl RefUnwindSafe for AWDLTLVType
impl Send for AWDLTLVType
impl Sync for AWDLTLVType
impl Unpin for AWDLTLVType
impl UnwindSafe for AWDLTLVType
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