pub enum ErrorKind {
Serialization,
NotFound,
Other,
// some variants omitted
}Expand description
A list specifying general categories of CloudFormation errors.
This list is intended to grow over time and it is not recommended to exhaustively match against it.
It is used with the Error type.
Variants§
Serialization
Serialization or deserialization failed.
NotFound
An item was not found, often a resource or output.
Other
Any error not part of this list.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ErrorKind
impl RefUnwindSafe for ErrorKind
impl Send for ErrorKind
impl Sync for ErrorKind
impl Unpin for ErrorKind
impl UnwindSafe for ErrorKind
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