Struct stm32wb_hci::event::HardwareError
source · pub struct HardwareError {
pub code: u8,
}Expand description
The Hardware Error event is used to notify the Host that a hardware failure has occurred in the Controller.
Defined in Vol 2, Part E, Section 7.7.16 of the spec.
Fields§
§code: u8These hardware codes will be implementation-specific, and can be assigned to indicate various hardware problems.
Trait Implementations§
source§impl Clone for HardwareError
impl Clone for HardwareError
source§fn clone(&self) -> HardwareError
fn clone(&self) -> HardwareError
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 Debug for HardwareError
impl Debug for HardwareError
impl Copy for HardwareError
Auto Trait Implementations§
impl RefUnwindSafe for HardwareError
impl Send for HardwareError
impl Sync for HardwareError
impl Unpin for HardwareError
impl UnwindSafe for HardwareError
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