pub enum CreateBatchInferenceJobError {
InvalidInput(String),
LimitExceeded(String),
ResourceAlreadyExists(String),
ResourceInUse(String),
ResourceNotFound(String),
}Expand description
Errors returned by CreateBatchInferenceJob
Variants§
InvalidInput(String)
Provide a valid value for the field or parameter.
LimitExceeded(String)
The limit on the number of requests per second has been exceeded.
ResourceAlreadyExists(String)
The specified resource already exists.
ResourceInUse(String)
The specified resource is in use.
ResourceNotFound(String)
Could not find the specified resource.
Implementations§
Trait Implementations§
Source§impl Debug for CreateBatchInferenceJobError
impl Debug for CreateBatchInferenceJobError
Source§impl Error for CreateBatchInferenceJobError
impl Error for CreateBatchInferenceJobError
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 CreateBatchInferenceJobError
impl PartialEq for CreateBatchInferenceJobError
Source§fn eq(&self, other: &CreateBatchInferenceJobError) -> bool
fn eq(&self, other: &CreateBatchInferenceJobError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateBatchInferenceJobError
Auto Trait Implementations§
impl Freeze for CreateBatchInferenceJobError
impl RefUnwindSafe for CreateBatchInferenceJobError
impl Send for CreateBatchInferenceJobError
impl Sync for CreateBatchInferenceJobError
impl Unpin for CreateBatchInferenceJobError
impl UnsafeUnpin for CreateBatchInferenceJobError
impl UnwindSafe for CreateBatchInferenceJobError
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