pub enum PeerManagerError<P: Debug + Display> {
Database(P),
}Expand description
Errors when managing persisted peers.
Variants§
Database(P)
Reading or writing from the database failed.
Trait Implementations§
Source§impl<P: Debug + Display> Error for PeerManagerError<P>
impl<P: Debug + Display> Error for PeerManagerError<P>
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()
Auto Trait Implementations§
impl<P> Freeze for PeerManagerError<P>where
P: Freeze,
impl<P> RefUnwindSafe for PeerManagerError<P>where
P: RefUnwindSafe,
impl<P> Send for PeerManagerError<P>where
P: Send,
impl<P> Sync for PeerManagerError<P>where
P: Sync,
impl<P> Unpin for PeerManagerError<P>where
P: Unpin,
impl<P> UnwindSafe for PeerManagerError<P>where
P: UnwindSafe,
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