pub enum PresenceRunnerError {
MultipleRun,
ReceiverError,
ExitBeforeReady,
JoinError(JoinError),
}Expand description
Points to errors specifically related to crate::PresenceRunner.
Variants§
Trait Implementations§
Source§impl Debug for PresenceRunnerError
impl Debug for PresenceRunnerError
Source§impl Display for PresenceRunnerError
impl Display for PresenceRunnerError
Source§impl Error for PresenceRunnerError
impl Error for PresenceRunnerError
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<JoinError> for PresenceRunnerError
impl From<JoinError> for PresenceRunnerError
Source§impl From<PresenceRunnerError> for PresenceError
impl From<PresenceRunnerError> for PresenceError
Source§fn from(source: PresenceRunnerError) -> Self
fn from(source: PresenceRunnerError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PresenceRunnerError
impl !RefUnwindSafe for PresenceRunnerError
impl Send for PresenceRunnerError
impl Sync for PresenceRunnerError
impl Unpin for PresenceRunnerError
impl UnsafeUnpin for PresenceRunnerError
impl !UnwindSafe for PresenceRunnerError
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