Enum cfn::ErrorKind [] [src]

pub enum ErrorKind {
    Serialization,
    NotFound,
    Other,
    // some variants omitted
}

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 or deserialization failed.

An item was not found, often a resource or output.

Any error not part of this list.

Trait Implementations

impl Clone for ErrorKind
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for ErrorKind
[src]

impl Debug for ErrorKind
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ErrorKind

impl Sync for ErrorKind