pub enum FHPIBAttributeId {
Show 26 variants
TrackParentEUI = 8_192,
BCInterval = 8_193,
UCExcludedChannels = 8_194,
BCExcludedChannels = 8_195,
UCDwellInterval = 8_196,
BCDwellInterval = 8_197,
ClockDrift = 8_198,
TimingAccuracy = 8_199,
UCChannelFunction = 8_200,
BCChannelFunction = 8_201,
UseParentBSIE = 8_202,
BrocastSchedId = 8_203,
UCFixedChannel = 8_204,
BCFixedChannel = 8_205,
PANSize = 8_206,
RoutingCost = 8_207,
RoutingMethod = 8_208,
EAPOLReady = 8_209,
FANTPSVersion = 8_210,
NetName = 8_211,
PANVersion = 8_212,
GTK0Hash = 8_213,
GTK1Hash = 8_214,
GTK2Hash = 8_215,
GTK3Hash = 8_216,
NeighborValidTime = 8_217,
}Variants§
TrackParentEUI = 8_192
BCInterval = 8_193
UCExcludedChannels = 8_194
BCExcludedChannels = 8_195
UCDwellInterval = 8_196
BCDwellInterval = 8_197
ClockDrift = 8_198
TimingAccuracy = 8_199
UCChannelFunction = 8_200
BCChannelFunction = 8_201
UseParentBSIE = 8_202
BrocastSchedId = 8_203
UCFixedChannel = 8_204
BCFixedChannel = 8_205
PANSize = 8_206
RoutingCost = 8_207
RoutingMethod = 8_208
EAPOLReady = 8_209
FANTPSVersion = 8_210
NetName = 8_211
PANVersion = 8_212
GTK0Hash = 8_213
GTK1Hash = 8_214
GTK2Hash = 8_215
GTK3Hash = 8_216
NeighborValidTime = 8_217
Implementations§
Source§impl FHPIBAttributeId
impl FHPIBAttributeId
pub fn try_decode(cursor: &mut Cursor<&[u8]>) -> Result<Self, Error>
pub fn encode_into(&self, buffer: &mut Vec<u8>)
Trait Implementations§
Source§impl Clone for FHPIBAttributeId
impl Clone for FHPIBAttributeId
Source§fn clone(&self) -> FHPIBAttributeId
fn clone(&self) -> FHPIBAttributeId
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 FHPIBAttributeId
impl Debug for FHPIBAttributeId
Source§impl FromPrimitive for FHPIBAttributeId
impl FromPrimitive for FHPIBAttributeId
Source§fn from_i64(n: i64) -> Option<Self>
fn from_i64(n: i64) -> Option<Self>
Converts an
i64 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_u64(n: u64) -> Option<Self>
fn from_u64(n: u64) -> Option<Self>
Converts an
u64 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_isize(n: isize) -> Option<Self>
fn from_isize(n: isize) -> Option<Self>
Converts an
isize to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_i8(n: i8) -> Option<Self>
fn from_i8(n: i8) -> Option<Self>
Converts an
i8 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_i16(n: i16) -> Option<Self>
fn from_i16(n: i16) -> Option<Self>
Converts an
i16 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_i32(n: i32) -> Option<Self>
fn from_i32(n: i32) -> Option<Self>
Converts an
i32 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_i128(n: i128) -> Option<Self>
fn from_i128(n: i128) -> Option<Self>
Converts an
i128 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read moreSource§fn from_usize(n: usize) -> Option<Self>
fn from_usize(n: usize) -> Option<Self>
Converts a
usize to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_u8(n: u8) -> Option<Self>
fn from_u8(n: u8) -> Option<Self>
Converts an
u8 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_u16(n: u16) -> Option<Self>
fn from_u16(n: u16) -> Option<Self>
Converts an
u16 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_u32(n: u32) -> Option<Self>
fn from_u32(n: u32) -> Option<Self>
Converts an
u32 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_u128(n: u128) -> Option<Self>
fn from_u128(n: u128) -> Option<Self>
Converts an
u128 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read moreSource§impl PartialEq for FHPIBAttributeId
impl PartialEq for FHPIBAttributeId
impl Copy for FHPIBAttributeId
impl StructuralPartialEq for FHPIBAttributeId
Auto Trait Implementations§
impl Freeze for FHPIBAttributeId
impl RefUnwindSafe for FHPIBAttributeId
impl Send for FHPIBAttributeId
impl Sync for FHPIBAttributeId
impl Unpin for FHPIBAttributeId
impl UnwindSafe for FHPIBAttributeId
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