pub enum CreateExperimentError {
ResourceLimitExceeded(String),
}
Expand description
Errors returned by CreateExperiment
Variants§
ResourceLimitExceeded(String)
You have exceeded an Amazon SageMaker resource limit. For example, you might have too many training jobs created.
Implementations§
Source§impl CreateExperimentError
impl CreateExperimentError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateExperimentError>
Trait Implementations§
Source§impl Debug for CreateExperimentError
impl Debug for CreateExperimentError
Source§impl Display for CreateExperimentError
impl Display for CreateExperimentError
Source§impl Error for CreateExperimentError
impl Error for CreateExperimentError
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 CreateExperimentError
impl PartialEq for CreateExperimentError
impl StructuralPartialEq for CreateExperimentError
Auto Trait Implementations§
impl Freeze for CreateExperimentError
impl RefUnwindSafe for CreateExperimentError
impl Send for CreateExperimentError
impl Sync for CreateExperimentError
impl Unpin for CreateExperimentError
impl UnwindSafe for CreateExperimentError
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