pub enum CreateSolutionVersionError {
InvalidInput(String),
ResourceInUse(String),
ResourceNotFound(String),
}Expand description
Errors returned by CreateSolutionVersion
Variants§
InvalidInput(String)
Provide a valid value for the field or parameter.
ResourceInUse(String)
The specified resource is in use.
ResourceNotFound(String)
Could not find the specified resource.
Implementations§
Source§impl CreateSolutionVersionError
impl CreateSolutionVersionError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateSolutionVersionError>
Trait Implementations§
Source§impl Debug for CreateSolutionVersionError
impl Debug for CreateSolutionVersionError
Source§impl Display for CreateSolutionVersionError
impl Display for CreateSolutionVersionError
Source§impl Error for CreateSolutionVersionError
impl Error for CreateSolutionVersionError
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 CreateSolutionVersionError
Auto Trait Implementations§
impl Freeze for CreateSolutionVersionError
impl RefUnwindSafe for CreateSolutionVersionError
impl Send for CreateSolutionVersionError
impl Sync for CreateSolutionVersionError
impl Unpin for CreateSolutionVersionError
impl UnwindSafe for CreateSolutionVersionError
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