pub enum GetTranscriptionJobError {
BadRequest(String),
InternalFailure(String),
LimitExceeded(String),
NotFound(String),
}
Expand description
Errors returned by GetTranscriptionJob
Variants§
BadRequest(String)
Your request didn't pass one or more validation tests. For example, if the transcription you're trying to delete doesn't exist or if it is in a non-terminal state (for example, it's "in progress"). See the exception Message
field for more information.
InternalFailure(String)
There was an internal error. Check the error message and try your request again.
LimitExceeded(String)
Either you have sent too many requests or your input file is too long. Wait before you resend your request, or use a smaller file and resend the request.
NotFound(String)
We can't find the requested resource. Check the name and try your request again.
Implementations§
Source§impl GetTranscriptionJobError
impl GetTranscriptionJobError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetTranscriptionJobError>
Trait Implementations§
Source§impl Debug for GetTranscriptionJobError
impl Debug for GetTranscriptionJobError
Source§impl Display for GetTranscriptionJobError
impl Display for GetTranscriptionJobError
Source§impl Error for GetTranscriptionJobError
impl Error for GetTranscriptionJobError
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 GetTranscriptionJobError
impl PartialEq for GetTranscriptionJobError
impl StructuralPartialEq for GetTranscriptionJobError
Auto Trait Implementations§
impl Freeze for GetTranscriptionJobError
impl RefUnwindSafe for GetTranscriptionJobError
impl Send for GetTranscriptionJobError
impl Sync for GetTranscriptionJobError
impl Unpin for GetTranscriptionJobError
impl UnwindSafe for GetTranscriptionJobError
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