pub enum HandleEventError {
ListDevices(HttpError),
PeerNotFound(String),
PeerPubkeyMissing(String),
Respond(RespondError),
}Variants§
Trait Implementations§
Source§impl Debug for HandleEventError
impl Debug for HandleEventError
Source§impl Display for HandleEventError
impl Display for HandleEventError
Source§impl Error for HandleEventError
impl Error for HandleEventError
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<RespondError> for HandleEventError
impl From<RespondError> for HandleEventError
Source§fn from(source: RespondError) -> Self
fn from(source: RespondError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for HandleEventError
impl RefUnwindSafe for HandleEventError
impl Send for HandleEventError
impl Sync for HandleEventError
impl Unpin for HandleEventError
impl UnsafeUnpin for HandleEventError
impl UnwindSafe for HandleEventError
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