[][src]Enum rocket_cors::AllOrSome

pub enum AllOrSome<T> {
    All,
    Some(T),
}

An enum signifying that some of type T is allowed, or All (everything is allowed).

Default is implemented for this enum and is All.

This enum is serialized and deserialized "Externally tagged"

Variants

All

Everything is allowed. Usually equivalent to the "*" value.

Some(T)

Only some of T is allowed

Methods

impl<T> AllOrSome<T>[src]

pub fn is_all(&self) -> bool[src]

Returns whether this is an All variant

pub fn is_some(&self) -> bool[src]

Returns whether this is a Some variant

pub fn unwrap(self) -> T[src]

Unwrap a Some variant and get its inner value

Panics

Panics if the variant is All

Trait Implementations

impl<T: Clone> Clone for AllOrSome<T>[src]

impl<T> Default for AllOrSome<T>[src]

impl<T: Eq> Eq for AllOrSome<T>[src]

impl<T: PartialEq> PartialEq<AllOrSome<T>> for AllOrSome<T>[src]

impl<T: Debug> Debug for AllOrSome<T>[src]

impl<T> StructuralPartialEq for AllOrSome<T>[src]

impl<T> StructuralEq for AllOrSome<T>[src]

impl<T> Serialize for AllOrSome<T> where
    T: Serialize
[src]

impl<'de, T> Deserialize<'de> for AllOrSome<T> where
    T: Deserialize<'de>, 
[src]

Auto Trait Implementations

impl<T> Send for AllOrSome<T> where
    T: Send

impl<T> Sync for AllOrSome<T> where
    T: Sync

impl<T> Unpin for AllOrSome<T> where
    T: Unpin

impl<T> UnwindSafe for AllOrSome<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for AllOrSome<T> where
    T: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

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

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

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

impl<T> Typeable for T where
    T: Any

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> IntoCollection<T> for T

impl<T, I> AsResult<T, I> for T where
    I: Input, 

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]