[][src]Struct rocket_http::uncased::Uncased

pub struct Uncased<'s> { /* fields omitted */ }

An uncased (case-preserving), owned or borrowed ASCII string.

Methods

impl<'s> Uncased<'s>
[src]

Creates a new Uncased string from string without allocating.

Example

use rocket::http::uncased::Uncased;

let uncased = Uncased::new("Content-Type");
assert_eq!(uncased, "content-type");
assert_eq!(uncased, "CONTENT-Type");

Converts self into an owned String, allocating if necessary.

Example

use rocket::http::uncased::Uncased;

let uncased = Uncased::new("Content-Type");
let string = uncased.into_string();
assert_eq!(string, "Content-Type".to_string());

Converts self into a Box<UncasedStr>.

Example

use rocket::http::uncased::Uncased;

let boxed = Uncased::new("Content-Type").into_boxed_uncased();
assert_eq!(&*boxed, "content-type");

Methods from Deref<Target = UncasedStr>

Returns self as an &str.

Example

use rocket::http::uncased::UncasedStr;

let uncased_str = UncasedStr::new("Hello!");
assert_eq!(uncased_str.as_str(), "Hello!");
assert_ne!(uncased_str.as_str(), "hELLo!");

Trait Implementations

impl<'a> Ord for Uncased<'a>
[src]

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl<'a, 'b> PartialEq<Uncased<'b>> for Uncased<'a>
[src]

This method tests for !=.

impl<'a> PartialEq<str> for Uncased<'a>
[src]

This method tests for !=.

impl<'b> PartialEq<Uncased<'b>> for str
[src]

This method tests for !=.

impl<'a, 'b> PartialEq<&'b str> for Uncased<'a>
[src]

This method tests for !=.

impl<'a, 'b> PartialEq<Uncased<'b>> for &'a str
[src]

This method tests for !=.

impl<'s, 'c: 's> From<&'c str> for Uncased<'s>
[src]

impl From<String> for Uncased<'static>
[src]

impl<'s, 'c: 's> From<Cow<'c, str>> for Uncased<'s>
[src]

impl<'s, 'c: 's, T: Into<Cow<'c, str>>> From<T> for Uncased<'s>
[src]

impl<'s> Clone for Uncased<'s>
[src]

Performs copy-assignment from source. Read more

impl<'s> Eq for Uncased<'s>
[src]

impl<'a, 'b> PartialOrd<Uncased<'b>> for Uncased<'a>
[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<'a> AsRef<UncasedStr> for Uncased<'a>
[src]

impl<'s> Display for Uncased<'s>
[src]

impl<'s> Debug for Uncased<'s>
[src]

impl<'a> Deref for Uncased<'a>
[src]

The resulting type after dereferencing.

impl<'s> Hash for Uncased<'s>
[src]

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

impl<'a> Borrow<UncasedStr> for Uncased<'a>
[src]

Auto Trait Implementations

impl<'s> Send for Uncased<'s>

impl<'s> Sync for Uncased<'s>

Blanket Implementations

impl<T> IntoCollection for T
[src]

impl<T> From for T
[src]

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[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, I> AsResult for T where
    I: Input
[src]

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

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

Get the TypeId of this object.