Enum rocket::error::LaunchErrorKind [] [src]

pub enum LaunchErrorKind {
    Io(Error),
    Collision,
    FailedFairing,
    Unknown(Box<Error + Send + Sync>),
}

The kind of launch error that occured.

In almost every instance, a launch error occurs because of an I/O error; this is represented by the Io variant. A launch error may also occur because of ill-defined routes that lead to collisions or because a fairing encountered an error; these are represented by the Collision and FailedFairing variants, respectively. The Unknown variant captures all other kinds of launch errors.

Variants

Trait Implementations

impl Debug for LaunchErrorKind
[src]

Formats the value using the given formatter.

impl Display for LaunchErrorKind
[src]

Formats the value using the given formatter. Read more