pub enum DetectStackSetDriftError {
InvalidOperation(String),
OperationInProgress(String),
StackSetNotFound(String),
}Expand description
Errors returned by DetectStackSetDrift
Variants§
InvalidOperation(String)
The specified operation isn't valid.
OperationInProgress(String)
Another operation is currently in progress for this stack set. Only one operation can be performed for a stack set at a given time.
StackSetNotFound(String)
The specified stack set doesn't exist.
Implementations§
Source§impl DetectStackSetDriftError
impl DetectStackSetDriftError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DetectStackSetDriftError>
Trait Implementations§
Source§impl Debug for DetectStackSetDriftError
impl Debug for DetectStackSetDriftError
Source§impl Display for DetectStackSetDriftError
impl Display for DetectStackSetDriftError
Source§impl Error for DetectStackSetDriftError
impl Error for DetectStackSetDriftError
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 DetectStackSetDriftError
impl PartialEq for DetectStackSetDriftError
impl StructuralPartialEq for DetectStackSetDriftError
Auto Trait Implementations§
impl Freeze for DetectStackSetDriftError
impl RefUnwindSafe for DetectStackSetDriftError
impl Send for DetectStackSetDriftError
impl Sync for DetectStackSetDriftError
impl Unpin for DetectStackSetDriftError
impl UnwindSafe for DetectStackSetDriftError
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