pub enum Platform {
UnhandledExceptionDetectedAfterReset,
PlatformError,
PlatformErrorAtLocation(String),
OperatingSystemCrash,
}
Expand description
This registry defines messages for compute platforms, covering topics related to processor, memory, and I/O device connectivity.
Variants§
UnhandledExceptionDetectedAfterReset
This message shall be used to indicate that an unhandled exception caused a compute platform to reset. The exception was detected after the reset occurred.
PlatformError
This message shall be used to indicate that a platform error occurred.
PlatformErrorAtLocation(String)
This message shall be used to indicate that a platform error occurred with specific device identification information available.
Tuple Fields
OperatingSystemCrash
This message shall be used to indicate that an unhandled exception caused a compute platform to crash or otherwise halt.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Platform
impl RefUnwindSafe for Platform
impl Send for Platform
impl Sync for Platform
impl Unpin for Platform
impl UnwindSafe for Platform
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