#[repr(u64)]pub enum LMPFeaturesPage1Bits {
SecureSimplePairingHostSupport = 1,
LeSupportedHost = 2,
SimultaneousLeAndBrHost = 4,
SecureConnectionsHostSupport = 8,
}Variants§
SecureSimplePairingHostSupport = 1
LeSupportedHost = 2
SimultaneousLeAndBrHost = 4
SecureConnectionsHostSupport = 8
Trait Implementations§
Source§impl Clone for LMPFeaturesPage1Bits
impl Clone for LMPFeaturesPage1Bits
Source§fn clone(&self) -> LMPFeaturesPage1Bits
fn clone(&self) -> LMPFeaturesPage1Bits
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 LMPFeaturesPage1Bits
impl Debug for LMPFeaturesPage1Bits
Source§impl From<&LMPFeaturesPage1Bits> for u64
impl From<&LMPFeaturesPage1Bits> for u64
Source§fn from(value: &LMPFeaturesPage1Bits) -> Self
fn from(value: &LMPFeaturesPage1Bits) -> Self
Converts to this type from the input type.
Source§impl From<LMPFeaturesPage1Bits> for u64
impl From<LMPFeaturesPage1Bits> for u64
Source§fn from(value: LMPFeaturesPage1Bits) -> Self
fn from(value: LMPFeaturesPage1Bits) -> Self
Converts to this type from the input type.
Source§impl Hash for LMPFeaturesPage1Bits
impl Hash for LMPFeaturesPage1Bits
Source§impl PartialEq for LMPFeaturesPage1Bits
impl PartialEq for LMPFeaturesPage1Bits
Source§impl TryFrom<u64> for LMPFeaturesPage1Bits
impl TryFrom<u64> for LMPFeaturesPage1Bits
impl Copy for LMPFeaturesPage1Bits
impl Eq for LMPFeaturesPage1Bits
impl StructuralPartialEq for LMPFeaturesPage1Bits
Auto Trait Implementations§
impl Freeze for LMPFeaturesPage1Bits
impl RefUnwindSafe for LMPFeaturesPage1Bits
impl Send for LMPFeaturesPage1Bits
impl Sync for LMPFeaturesPage1Bits
impl Unpin for LMPFeaturesPage1Bits
impl UnwindSafe for LMPFeaturesPage1Bits
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more