pub enum StopBuildError {
InvalidInput(String),
ResourceNotFound(String),
}
Expand description
Errors returned by StopBuild
Variants§
InvalidInput(String)
The input value that was provided is not valid.
ResourceNotFound(String)
The specified AWS resource cannot be found.
Implementations§
Source§impl StopBuildError
impl StopBuildError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<StopBuildError>
Trait Implementations§
Source§impl Debug for StopBuildError
impl Debug for StopBuildError
Source§impl Display for StopBuildError
impl Display for StopBuildError
Source§impl Error for StopBuildError
impl Error for StopBuildError
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 StopBuildError
impl PartialEq for StopBuildError
impl StructuralPartialEq for StopBuildError
Auto Trait Implementations§
impl Freeze for StopBuildError
impl RefUnwindSafe for StopBuildError
impl Send for StopBuildError
impl Sync for StopBuildError
impl Unpin for StopBuildError
impl UnwindSafe for StopBuildError
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