pub struct LeReadRemoteUsedFeaturesComplete<VS> {
pub status: Status<VS>,
pub conn_handle: ConnectionHandle,
pub features: LinkLayerFeature,
}Expand description
Indicates the completion of the process of the Controller obtaining the features used on the
connection and the features supported by the remote Bluetooth device specified by
conn_handle.
Note (v5.0): If the features are requested more than once while a connection exists between the two devices, the second and subsequent requests may report a cached copy of the features rather than fetching the feature mask again.
Defined in Vol 2, Part E, Section 7.7.65.4 of the spec.
Fields§
§status: Status<VS>Did the read fail, and if so, how?
conn_handle: ConnectionHandleConnection handle to be used to identify a connection between two Bluetooth devices.
features: LinkLayerFeatureBit Mask List of used LE features.
Trait Implementations§
source§impl<VS: Clone> Clone for LeReadRemoteUsedFeaturesComplete<VS>
impl<VS: Clone> Clone for LeReadRemoteUsedFeaturesComplete<VS>
source§fn clone(&self) -> LeReadRemoteUsedFeaturesComplete<VS>
fn clone(&self) -> LeReadRemoteUsedFeaturesComplete<VS>
Returns a copy 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<VS: Debug> Debug for LeReadRemoteUsedFeaturesComplete<VS>
impl<VS: Debug> Debug for LeReadRemoteUsedFeaturesComplete<VS>
impl<VS: Copy> Copy for LeReadRemoteUsedFeaturesComplete<VS>
Auto Trait Implementations§
impl<VS> RefUnwindSafe for LeReadRemoteUsedFeaturesComplete<VS>where VS: RefUnwindSafe,
impl<VS> Send for LeReadRemoteUsedFeaturesComplete<VS>where VS: Send,
impl<VS> Sync for LeReadRemoteUsedFeaturesComplete<VS>where VS: Sync,
impl<VS> Unpin for LeReadRemoteUsedFeaturesComplete<VS>where VS: Unpin,
impl<VS> UnwindSafe for LeReadRemoteUsedFeaturesComplete<VS>where VS: UnwindSafe,
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