[][src]Struct solana_jsonrpc_server_utils::cors::Ascii

pub struct Ascii<S>(_);

Case Insensitive wrapper of Ascii strings.

Methods

impl<S> Ascii<S>
[src]

Trait Implementations

impl<S> Clone for Ascii<S> where
    S: Clone
[src]

Performs copy-assignment from source. Read more

impl<T> PartialOrd<Ascii<T>> for Ascii<T> where
    T: AsRef<str>, 
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<S> AsRef<str> for Ascii<S> where
    S: AsRef<str>, 
[src]

impl<S> Deref for Ascii<S>
[src]

The resulting type after dereferencing.

impl<T> Ord for Ascii<T> where
    T: AsRef<str>, 
[src]

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl<S> Display for Ascii<S> where
    S: Display
[src]

impl<S> FromStr for Ascii<S> where
    S: FromStr
[src]

The associated error which can be returned from parsing.

impl<S> Debug for Ascii<S> where
    S: Debug
[src]

impl<S> Eq for Ascii<S> where
    S: AsRef<str>, 
[src]

impl<S> Copy for Ascii<S> where
    S: Copy
[src]

impl<S> DerefMut for Ascii<S>
[src]

impl<S1, S2> PartialEq<S2> for Ascii<S1> where
    S1: AsRef<str>,
    S2: AsRef<str>, 
[src]

This method tests for !=.

impl<S> Hash for Ascii<S> where
    S: AsRef<str>, 
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl<S> Send for Ascii<S> where
    S: Send

impl<S> Sync for Ascii<S> where
    S: Sync

Blanket Implementations

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

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

impl<T> From for T
[src]

impl<T> ToOwned for T where
    T: Clone
[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> BorrowMut for T where
    T: ?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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T