pub enum GetThirdPartyJobDetailsError {
InvalidClientToken(String),
InvalidJob(String),
JobNotFound(String),
}
Expand description
Errors returned by GetThirdPartyJobDetails
Variants§
InvalidClientToken(String)
The client token was specified in an invalid format
InvalidJob(String)
The job was specified in an invalid format or cannot be found.
JobNotFound(String)
The job was specified in an invalid format or cannot be found.
Implementations§
Trait Implementations§
Source§impl Debug for GetThirdPartyJobDetailsError
impl Debug for GetThirdPartyJobDetailsError
Source§impl Error for GetThirdPartyJobDetailsError
impl Error for GetThirdPartyJobDetailsError
1.30.0 · 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 PartialEq for GetThirdPartyJobDetailsError
impl PartialEq for GetThirdPartyJobDetailsError
Source§fn eq(&self, other: &GetThirdPartyJobDetailsError) -> bool
fn eq(&self, other: &GetThirdPartyJobDetailsError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetThirdPartyJobDetailsError
Auto Trait Implementations§
impl Freeze for GetThirdPartyJobDetailsError
impl RefUnwindSafe for GetThirdPartyJobDetailsError
impl Send for GetThirdPartyJobDetailsError
impl Sync for GetThirdPartyJobDetailsError
impl Unpin for GetThirdPartyJobDetailsError
impl UnwindSafe for GetThirdPartyJobDetailsError
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