pub enum PhyEvent {
    OnCriticalError {
        reason_code: CriticalErrorReason,
    },
}Variants§
OnCriticalError
Fields
§
reason_code: CriticalErrorReasonImplementations§
Source§impl PhyEvent
 
impl PhyEvent
pub fn into_on_critical_error(self) -> Option<CriticalErrorReason>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PhyEvent
impl RefUnwindSafe for PhyEvent
impl Send for PhyEvent
impl Sync for PhyEvent
impl Unpin for PhyEvent
impl UnwindSafe for PhyEvent
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