pub struct HalConfigData {
pub status: Status,
pub value: HalConfigParameter,
}
Expand description
Parameters returned by the HAL Read Config Data command.
Fields§
§status: Status
Did the command fail, and if so, how?
value: HalConfigParameter
Requested 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 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 moreAuto Trait Implementations§
impl Freeze for HalConfigData
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