pub enum ProviderProbeError {
Storage(StorageError),
Protocol(StoreProtocolError),
InvalidReceipt(String),
}Variants§
Trait Implementations§
Source§impl Debug for ProviderProbeError
impl Debug for ProviderProbeError
Source§impl Display for ProviderProbeError
impl Display for ProviderProbeError
Source§impl Error for ProviderProbeError
impl Error for ProviderProbeError
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<ProviderProbeError> for DeviceJoinExchangeError
impl From<ProviderProbeError> for DeviceJoinExchangeError
Source§fn from(source: ProviderProbeError) -> Self
fn from(source: ProviderProbeError) -> Self
Converts to this type from the input type.
Source§impl From<ProviderProbeError> for StoreProtocolError
impl From<ProviderProbeError> for StoreProtocolError
Source§fn from(error: ProviderProbeError) -> Self
fn from(error: ProviderProbeError) -> Self
Converts to this type from the input type.
Source§impl From<StorageError> for ProviderProbeError
impl From<StorageError> for ProviderProbeError
Source§fn from(source: StorageError) -> Self
fn from(source: StorageError) -> Self
Converts to this type from the input type.
Source§impl From<StoreProtocolError> for ProviderProbeError
impl From<StoreProtocolError> for ProviderProbeError
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 ProviderProbeError
impl !RefUnwindSafe for ProviderProbeError
impl Send for ProviderProbeError
impl Sync for ProviderProbeError
impl Unpin for ProviderProbeError
impl UnsafeUnpin for ProviderProbeError
impl !UnwindSafe for ProviderProbeError
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