pub enum StoreDeviceExclusionJournalError {
Invalid(String),
Protocol(StoreProtocolError),
RemoteObject(RemoteObjectRecordError),
Outbound(PreparedCommitError),
Storage(StorageError),
}Variants§
Invalid(String)
Protocol(StoreProtocolError)
RemoteObject(RemoteObjectRecordError)
Outbound(PreparedCommitError)
Storage(StorageError)
Trait Implementations§
Source§impl Error for StoreDeviceExclusionJournalError
impl Error for StoreDeviceExclusionJournalError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<PreparedCommitError> for StoreDeviceExclusionJournalError
impl From<PreparedCommitError> for StoreDeviceExclusionJournalError
Source§fn from(source: PreparedCommitError) -> Self
fn from(source: PreparedCommitError) -> Self
Converts to this type from the input type.
Source§impl From<RemoteObjectRecordError> for StoreDeviceExclusionJournalError
impl From<RemoteObjectRecordError> for StoreDeviceExclusionJournalError
Source§fn from(source: RemoteObjectRecordError) -> Self
fn from(source: RemoteObjectRecordError) -> Self
Converts to this type from the input type.
Source§impl From<StorageError> for StoreDeviceExclusionJournalError
impl From<StorageError> for StoreDeviceExclusionJournalError
Source§fn from(source: StorageError) -> Self
fn from(source: StorageError) -> Self
Converts to this type from the input type.
Source§impl From<StoreProtocolError> for StoreDeviceExclusionJournalError
impl From<StoreProtocolError> for StoreDeviceExclusionJournalError
Source§fn from(source: StoreProtocolError) -> Self
fn from(source: StoreProtocolError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StoreDeviceExclusionJournalError
impl !RefUnwindSafe for StoreDeviceExclusionJournalError
impl Send for StoreDeviceExclusionJournalError
impl Sync for StoreDeviceExclusionJournalError
impl Unpin for StoreDeviceExclusionJournalError
impl UnsafeUnpin for StoreDeviceExclusionJournalError
impl !UnwindSafe for StoreDeviceExclusionJournalError
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