pub enum RecordHandlerProgressError {
InvalidStateTransition(String),
OperationStatusCheckFailed(String),
}Expand description
Errors returned by RecordHandlerProgress
Variants§
InvalidStateTransition(String)
Error reserved for use by the CloudFormation CLI. CloudFormation does not return this error to users.
OperationStatusCheckFailed(String)
Error reserved for use by the CloudFormation CLI. CloudFormation does not return this error to users.
Implementations§
Source§impl RecordHandlerProgressError
impl RecordHandlerProgressError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<RecordHandlerProgressError>
Trait Implementations§
Source§impl Debug for RecordHandlerProgressError
impl Debug for RecordHandlerProgressError
Source§impl Display for RecordHandlerProgressError
impl Display for RecordHandlerProgressError
Source§impl Error for RecordHandlerProgressError
impl Error for RecordHandlerProgressError
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 RecordHandlerProgressError
impl PartialEq for RecordHandlerProgressError
Source§fn eq(&self, other: &RecordHandlerProgressError) -> bool
fn eq(&self, other: &RecordHandlerProgressError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RecordHandlerProgressError
Auto Trait Implementations§
impl Freeze for RecordHandlerProgressError
impl RefUnwindSafe for RecordHandlerProgressError
impl Send for RecordHandlerProgressError
impl Sync for RecordHandlerProgressError
impl Unpin for RecordHandlerProgressError
impl UnsafeUnpin for RecordHandlerProgressError
impl UnwindSafe for RecordHandlerProgressError
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