pub struct ExtensionNotFound(/* private fields */);Expand description
Rejection type used when the extension is not found in the current JobCall.
Implementations§
Trait Implementations§
Source§impl Debug for ExtensionNotFound
impl Debug for ExtensionNotFound
Source§impl Display for ExtensionNotFound
impl Display for ExtensionNotFound
Source§impl Error for ExtensionNotFound
impl Error for ExtensionNotFound
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 IntoJobResult for ExtensionNotFound
impl IntoJobResult for ExtensionNotFound
Source§fn into_job_result(self) -> Option<JobResult>
fn into_job_result(self) -> Option<JobResult>
Create a JobResult.
Auto Trait Implementations§
impl Freeze for ExtensionNotFound
impl !RefUnwindSafe for ExtensionNotFound
impl Send for ExtensionNotFound
impl Sync for ExtensionNotFound
impl Unpin for ExtensionNotFound
impl !UnwindSafe for ExtensionNotFound
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