pub struct LeSupportedFeatures {
pub status: Status,
pub supported_features: LeFeatures,
}
Expand description
Values returned by the LE Read Local Supported Features command.
Fields§
§status: Status
Did the command fail, and if so, how?
supported_features: LeFeatures
Supported LE features.
Trait Implementations§
Source§impl Clone for LeSupportedFeatures
impl Clone for LeSupportedFeatures
Source§fn clone(&self) -> LeSupportedFeatures
fn clone(&self) -> LeSupportedFeatures
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 LeSupportedFeatures
impl Debug for LeSupportedFeatures
impl Copy for LeSupportedFeatures
Auto Trait Implementations§
impl Freeze for LeSupportedFeatures
impl RefUnwindSafe for LeSupportedFeatures
impl Send for LeSupportedFeatures
impl Sync for LeSupportedFeatures
impl Unpin for LeSupportedFeatures
impl UnwindSafe for LeSupportedFeatures
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