pub enum AuthTaskExecutionError<R> {
AuthExecutionError(AuthExecutionError),
SendTimeoutErrorAsync(SendTimeoutError<R>),
JoinError(JoinError),
}
Variants§
AuthExecutionError(AuthExecutionError)
SendTimeoutErrorAsync(SendTimeoutError<R>)
JoinError(JoinError)
Trait Implementations§
source§impl<R: Debug> Debug for AuthTaskExecutionError<R>
impl<R: Debug> Debug for AuthTaskExecutionError<R>
source§impl<R> Display for AuthTaskExecutionError<R>where
SendTimeoutError<R>: Debug,
impl<R> Display for AuthTaskExecutionError<R>where
SendTimeoutError<R>: Debug,
source§impl<R> Error for AuthTaskExecutionError<R>
impl<R> Error for AuthTaskExecutionError<R>
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<R> From<AuthExecutionError> for AuthTaskExecutionError<R>
impl<R> From<AuthExecutionError> for AuthTaskExecutionError<R>
source§fn from(source: AuthExecutionError) -> Self
fn from(source: AuthExecutionError) -> Self
Converts to this type from the input type.
source§impl<R> From<JoinError> for AuthTaskExecutionError<R>
impl<R> From<JoinError> for AuthTaskExecutionError<R>
source§impl<R> From<SendTimeoutError<R>> for AuthTaskExecutionError<R>
impl<R> From<SendTimeoutError<R>> for AuthTaskExecutionError<R>
source§fn from(source: SendTimeoutError<R>) -> Self
fn from(source: SendTimeoutError<R>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<R> Freeze for AuthTaskExecutionError<R>where
R: Freeze,
impl<R> !RefUnwindSafe for AuthTaskExecutionError<R>
impl<R> Send for AuthTaskExecutionError<R>where
R: Send,
impl<R> Sync for AuthTaskExecutionError<R>where
R: Sync,
impl<R> Unpin for AuthTaskExecutionError<R>where
R: Unpin,
impl<R> !UnwindSafe for AuthTaskExecutionError<R>
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