pub enum StopStackSetOperationError {
InvalidOperation(String),
OperationNotFound(String),
StackSetNotFound(String),
}Expand description
Errors returned by StopStackSetOperation
Variants§
InvalidOperation(String)
The specified operation isn't valid.
OperationNotFound(String)
The specified ID refers to an operation that doesn't exist.
StackSetNotFound(String)
The specified stack set doesn't exist.
Implementations§
Source§impl StopStackSetOperationError
impl StopStackSetOperationError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<StopStackSetOperationError>
Trait Implementations§
Source§impl Debug for StopStackSetOperationError
impl Debug for StopStackSetOperationError
Source§impl Display for StopStackSetOperationError
impl Display for StopStackSetOperationError
Source§impl Error for StopStackSetOperationError
impl Error for StopStackSetOperationError
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 StopStackSetOperationError
impl PartialEq for StopStackSetOperationError
Source§fn eq(&self, other: &StopStackSetOperationError) -> bool
fn eq(&self, other: &StopStackSetOperationError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StopStackSetOperationError
Auto Trait Implementations§
impl Freeze for StopStackSetOperationError
impl RefUnwindSafe for StopStackSetOperationError
impl Send for StopStackSetOperationError
impl Sync for StopStackSetOperationError
impl Unpin for StopStackSetOperationError
impl UnsafeUnpin for StopStackSetOperationError
impl UnwindSafe for StopStackSetOperationError
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