Struct stm32wb_hci::vendor::stm32wb::event::command::HalConfigData
source · pub struct HalConfigData {
pub status: Status<Status>,
pub value: HalConfigParameter,
}Expand description
Parameters returned by the HAL Read Config Data command.
Fields§
§status: Status<Status>Did the command fail, and if so, how?
value: HalConfigParameterRequested value.
The value is requested by offset, and distinguished upon return by length only. This means that this event cannot distinguish between the 16-byte encryption keys (EncryptionRoot and IdentityRoot) or between the single-byte values (LinkLayerOnly or Role).
Trait Implementations§
source§impl Clone for HalConfigData
impl Clone for HalConfigData
source§fn clone(&self) -> HalConfigData
fn clone(&self) -> HalConfigData
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 moreAuto Trait Implementations§
impl RefUnwindSafe for HalConfigData
impl Send for HalConfigData
impl Sync for HalConfigData
impl Unpin for HalConfigData
impl UnwindSafe for HalConfigData
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