pub struct ChannelMapParameters {
pub status: Status,
pub conn_handle: ConnectionHandle,
pub channel_map: ChannelClassification,
}
Expand description
Parameters returned by the LE Read Channel Map command.
Fields§
§status: Status
Did the command fail, and if so, how?
conn_handle: ConnectionHandle
Connection handle whose channel map is returned.
channel_map: ChannelClassification
Channels that may be used for this connection.
Trait Implementations§
Source§impl Clone for ChannelMapParameters
impl Clone for ChannelMapParameters
Source§fn clone(&self) -> ChannelMapParameters
fn clone(&self) -> ChannelMapParameters
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 ChannelMapParameters
impl Debug for ChannelMapParameters
impl Copy for ChannelMapParameters
Auto Trait Implementations§
impl Freeze for ChannelMapParameters
impl RefUnwindSafe for ChannelMapParameters
impl Send for ChannelMapParameters
impl Sync for ChannelMapParameters
impl Unpin for ChannelMapParameters
impl UnwindSafe for ChannelMapParameters
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