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

pub enum LaunchErrorKind {
    Io(Error),
    Collision,
    FailedFairing,
    Unknown(Box<dyn 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 From<LaunchErrorKind> for LaunchError
[src]

impl Display for LaunchErrorKind
[src]

impl Debug for LaunchErrorKind
[src]

Auto Trait Implementations

impl Send for LaunchErrorKind

impl Sync for LaunchErrorKind

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Typeable for T where
    T: Any
[src]

Get the TypeId of this object.