pub enum StopTextTranslationJobError {
InternalServer(String),
ResourceNotFound(String),
TooManyRequests(String),
}
Expand description
Errors returned by StopTextTranslationJob
Variants§
InternalServer(String)
An internal server error occurred. Retry your request.
ResourceNotFound(String)
The resource you are looking for has not been found. Review the resource you're looking for and see if a different resource will accomplish your needs before retrying the revised request.
TooManyRequests(String)
You have made too many requests within a short period of time. Wait for a short time and then try your request again.
Implementations§
Source§impl StopTextTranslationJobError
impl StopTextTranslationJobError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<StopTextTranslationJobError>
Trait Implementations§
Source§impl Debug for StopTextTranslationJobError
impl Debug for StopTextTranslationJobError
Source§impl Error for StopTextTranslationJobError
impl Error for StopTextTranslationJobError
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()
impl StructuralPartialEq for StopTextTranslationJobError
Auto Trait Implementations§
impl Freeze for StopTextTranslationJobError
impl RefUnwindSafe for StopTextTranslationJobError
impl Send for StopTextTranslationJobError
impl Sync for StopTextTranslationJobError
impl Unpin for StopTextTranslationJobError
impl UnwindSafe for StopTextTranslationJobError
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