pub struct ReadRemoteExtendedFeatures(/* private fields */);
Expand description
Read Remote Extended Features command ๐
Requests the extended features from a remote device for a specific page.
Implementationsยง
Sourceยงimpl ReadRemoteExtendedFeatures
impl ReadRemoteExtendedFeatures
Sourcepub fn new(handle: ConnHandle, page_number: u8) -> Self
pub fn new(handle: ConnHandle, page_number: u8) -> Self
Create a new instance of a command.
Trait Implementationsยง
Sourceยงimpl Clone for ReadRemoteExtendedFeatures
impl Clone for ReadRemoteExtendedFeatures
Sourceยงfn clone(&self) -> ReadRemoteExtendedFeatures
fn clone(&self) -> ReadRemoteExtendedFeatures
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 Cmd for ReadRemoteExtendedFeatures
impl Cmd for ReadRemoteExtendedFeatures
Sourceยงtype Params = ReadRemoteExtendedFeaturesParams
type Params = ReadRemoteExtendedFeaturesParams
Parameters type for this command.
Sourceยงfn params(&self) -> &ReadRemoteExtendedFeaturesParams
fn params(&self) -> &ReadRemoteExtendedFeaturesParams
Parameters expected for this command.
Sourceยงimpl Debug for ReadRemoteExtendedFeatures
impl Debug for ReadRemoteExtendedFeatures
Sourceยงimpl From<ReadRemoteExtendedFeaturesParams> for ReadRemoteExtendedFeatures
impl From<ReadRemoteExtendedFeaturesParams> for ReadRemoteExtendedFeatures
Sourceยงfn from(params: ReadRemoteExtendedFeaturesParams) -> Self
fn from(params: ReadRemoteExtendedFeaturesParams) -> Self
Converts to this type from the input type.
Sourceยงimpl Hash for ReadRemoteExtendedFeatures
impl Hash for ReadRemoteExtendedFeatures
Sourceยงimpl Ord for ReadRemoteExtendedFeatures
impl Ord for ReadRemoteExtendedFeatures
Sourceยงfn cmp(&self, other: &ReadRemoteExtendedFeatures) -> Ordering
fn cmp(&self, other: &ReadRemoteExtendedFeatures) -> Ordering
1.21.0 ยท Sourceยงfn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Sourceยงimpl PartialEq for ReadRemoteExtendedFeatures
impl PartialEq for ReadRemoteExtendedFeatures
Sourceยงfn eq(&self, other: &ReadRemoteExtendedFeatures) -> bool
fn eq(&self, other: &ReadRemoteExtendedFeatures) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Sourceยงimpl PartialOrd for ReadRemoteExtendedFeatures
impl PartialOrd for ReadRemoteExtendedFeatures
Sourceยงimpl SyncCmd for ReadRemoteExtendedFeatures
impl SyncCmd for ReadRemoteExtendedFeatures
Sourceยงtype Return = ()
type Return = ()
The type of the parameters for the
CommandComplete
eventSourceยงfn param_handle(&self)
fn param_handle(&self)
Handle parameter for this command.
Sourceยงfn return_handle(_data: &[u8]) -> Result<Self::Handle, FromHciBytesError>
fn return_handle(_data: &[u8]) -> Result<Self::Handle, FromHciBytesError>
Extracts the
Self::Handle
from the return parameters for commands that return a handle. Read moreSourceยงimpl WriteHci for ReadRemoteExtendedFeatures
impl WriteHci for ReadRemoteExtendedFeatures
impl Copy for ReadRemoteExtendedFeatures
impl Eq for ReadRemoteExtendedFeatures
impl StructuralPartialEq for ReadRemoteExtendedFeatures
Auto Trait Implementationsยง
impl Freeze for ReadRemoteExtendedFeatures
impl RefUnwindSafe for ReadRemoteExtendedFeatures
impl Send for ReadRemoteExtendedFeatures
impl Sync for ReadRemoteExtendedFeatures
impl Unpin for ReadRemoteExtendedFeatures
impl UnwindSafe for ReadRemoteExtendedFeatures
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> HostToControllerPacket for Twhere
T: Cmd,
impl<T> HostToControllerPacket for Twhere
T: Cmd,
Sourceยงconst KIND: PacketKind = const KIND: PacketKind = PacketKind::Cmd;
const KIND: PacketKind = const KIND: PacketKind = PacketKind::Cmd;
Packet kind associated with this HCI packet.