Struct rocket::http::uncased::UncasedStr[][src]

#[repr(C)]pub struct UncasedStr(_);

A reference to an uncased (case-preserving) ASCII string. This is typically created from an &str as follows:

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

let ascii_ref: &UncasedStr = "Hello, world!".into();

Implementations

impl UncasedStr[src]

pub fn new(string: &str) -> &UncasedStr[src]

Returns a reference to an UncasedStr from an &str.

Example

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

let uncased_str = UncasedStr::new("Hello!");
assert_eq!(uncased_str, "hello!");
assert_eq!(uncased_str, "Hello!");
assert_eq!(uncased_str, "HeLLo!");

pub fn as_str(&self) -> &str[src]

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!");

pub fn into_uncased(self: Box<UncasedStr, Global>) -> Uncased<'static>[src]

Converts a Box<UncasedStr> into an Uncased without copying or allocating.

Example

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

let uncased = Uncased::new("Hello!");
let boxed = uncased.clone().into_boxed_uncased();
assert_eq!(boxed.into_uncased(), uncased);

Trait Implementations

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

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

impl Debug for UncasedStr[src]

impl Display for UncasedStr[src]

impl Eq for UncasedStr[src]

impl<'a> From<&'a str> for &'a UncasedStr[src]

impl Hash for UncasedStr[src]

impl Ord for UncasedStr[src]

impl<'a> PartialEq<&'a str> for UncasedStr[src]

impl PartialEq<UncasedStr> for UncasedStr[src]

impl<'a> PartialEq<UncasedStr> for &'a str[src]

impl PartialEq<UncasedStr> for str[src]

impl PartialEq<str> for UncasedStr[src]

impl PartialOrd<UncasedStr> for UncasedStr[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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