[][src]Struct rocket::fairing::Kind

pub struct Kind(_);

A bitset representing the kinds of callbacks a Fairing wishes to receive.

A fairing can request any combination of any of the following kinds of callbacks:

Two Kind structures can be ord together to represent a combination. For instance, to represent a fairing that is both a launch and request fairing, use Kind::Launch | Kind::Request. Similarly, to represent a fairing that is only an attach fairing, use Kind::Attach.

Methods

impl Kind
[src]

Attach: Kind = Kind(1)

Kind flag representing a request for an 'attach' callback.

Launch: Kind = Kind(2)

Kind flag representing a request for a 'launch' callback.

Request: Kind = Kind(4)

Kind flag representing a request for a 'request' callback.

Response: Kind = Kind(8)

Kind flag representing a request for a 'response' callback.

Returns true if self is a superset of other. In other words, returns true if all of the kinds in other are also in self.

Example

use rocket::fairing::Kind;

let launch_and_req = Kind::Launch | Kind::Request;
assert!(launch_and_req.is(Kind::Launch | Kind::Request));

assert!(launch_and_req.is(Kind::Launch));
assert!(launch_and_req.is(Kind::Request));

assert!(!launch_and_req.is(Kind::Response));
assert!(!launch_and_req.is(Kind::Launch | Kind::Response));
assert!(!launch_and_req.is(Kind::Launch | Kind::Request | Kind::Response));

Returns true if self is exactly other.

Example

use rocket::fairing::Kind;

let launch_and_req = Kind::Launch | Kind::Request;
assert!(launch_and_req.is_exactly(Kind::Launch | Kind::Request));

assert!(!launch_and_req.is_exactly(Kind::Launch));
assert!(!launch_and_req.is_exactly(Kind::Request));
assert!(!launch_and_req.is_exactly(Kind::Response));
assert!(!launch_and_req.is_exactly(Kind::Launch | Kind::Response));

Trait Implementations

impl Debug for Kind
[src]

Formats the value using the given formatter. Read more

impl Clone for Kind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Kind
[src]

impl BitOr for Kind
[src]

The resulting type after applying the | operator.

Performs the | operation.

Auto Trait Implementations

impl Send for Kind

impl Sync for Kind

Blanket Implementations

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

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

Creates owned data from borrowed data, usually by cloning. Read more

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

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

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.

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

Performs the conversion.

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

Important traits for &'a mut W

Immutably borrows from an owned value. Read more

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

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

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

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.

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

Performs the conversion.

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

Important traits for &'a mut W

Mutably borrows from an owned value. Read more

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

Get the TypeId of this object.