pub struct UnstableChecker {
    pub unstable: bool,
}
Expand description

UnstableChecker is a struct so it can be placed inside GothamState; using type alias for a bool could work, but there’s a high chance that there might be another type alias pointing to a bool, which would override previously used alias.

Fields

unstable: bool

Implementations

Quits the process if the –unstable flag was not provided.

This is intentionally a non-recoverable check so that people cannot probe for unstable APIs from stable programs.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.