pub enum ErrorGranularity {
Other,
Unknown,
DeviceLevel,
MemoryPartitionLevel,
Undefined(u8),
}Expand description
Granularity (for example, device versus Partition) to which the error can be resolved
Variants§
Trait Implementations§
Source§impl Clone for ErrorGranularity
impl Clone for ErrorGranularity
Source§fn clone(&self) -> ErrorGranularity
fn clone(&self) -> ErrorGranularity
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 moreSource§impl Debug for ErrorGranularity
impl Debug for ErrorGranularity
Source§impl Display for ErrorGranularity
impl Display for ErrorGranularity
Source§impl From<u8> for ErrorGranularity
impl From<u8> for ErrorGranularity
Source§impl Hash for ErrorGranularity
impl Hash for ErrorGranularity
Source§impl PartialEq for ErrorGranularity
impl PartialEq for ErrorGranularity
impl Copy for ErrorGranularity
impl Eq for ErrorGranularity
impl StructuralPartialEq for ErrorGranularity
Auto Trait Implementations§
impl Freeze for ErrorGranularity
impl RefUnwindSafe for ErrorGranularity
impl Send for ErrorGranularity
impl Sync for ErrorGranularity
impl Unpin for ErrorGranularity
impl UnsafeUnpin for ErrorGranularity
impl UnwindSafe for ErrorGranularity
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