Struct rocket::http::uncased::Uncased [−][src]
pub struct Uncased<'s> { /* fields omitted */ }
An uncased (case-preserving), owned or borrowed ASCII string.
Methods
impl<'s> Uncased<'s>
[src]
impl<'s> Uncased<'s>
pub fn new<S: Into<Cow<'s, str>>>(string: S) -> Uncased<'s>
[src]
pub fn new<S: Into<Cow<'s, str>>>(string: S) -> Uncased<'s>
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");
pub fn into_string(self) -> String
[src]
pub fn into_string(self) -> String
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());
ⓘImportant traits for Box<R>pub fn into_boxed_uncased(self) -> Box<UncasedStr>
[src]
pub fn into_boxed_uncased(self) -> Box<UncasedStr>
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>
pub fn as_str(&self) -> &str
[src]
pub fn as_str(&self) -> &str
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<'s> Clone for Uncased<'s>
[src]
impl<'s> Clone for Uncased<'s>
fn clone(&self) -> Uncased<'s>
[src]
fn clone(&self) -> Uncased<'s>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl<'s> Debug for Uncased<'s>
[src]
impl<'s> Debug for Uncased<'s>
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<'a> Deref for Uncased<'a>
[src]
impl<'a> Deref for Uncased<'a>
type Target = UncasedStr
The resulting type after dereferencing.
fn deref(&self) -> &UncasedStr
[src]
fn deref(&self) -> &UncasedStr
Dereferences the value.
impl<'a> AsRef<UncasedStr> for Uncased<'a>
[src]
impl<'a> AsRef<UncasedStr> for Uncased<'a>
fn as_ref(&self) -> &UncasedStr
[src]
fn as_ref(&self) -> &UncasedStr
Performs the conversion.
impl<'a> Borrow<UncasedStr> for Uncased<'a>
[src]
impl<'a> Borrow<UncasedStr> for Uncased<'a>
fn borrow(&self) -> &UncasedStr
[src]
fn borrow(&self) -> &UncasedStr
Immutably borrows from an owned value. Read more
impl<'s, 'c: 's> From<&'c str> for Uncased<'s>
[src]
impl<'s, 'c: 's> From<&'c str> for Uncased<'s>
impl From<String> for Uncased<'static>
[src]
impl From<String> for Uncased<'static>
impl<'s, 'c: 's> From<Cow<'c, str>> for Uncased<'s>
[src]
impl<'s, 'c: 's> From<Cow<'c, str>> for Uncased<'s>
impl<'s, 'c: 's, T: Into<Cow<'c, str>>> From<T> for Uncased<'s>
[src]
impl<'s, 'c: 's, T: Into<Cow<'c, str>>> From<T> for Uncased<'s>
impl<'a, 'b> PartialOrd<Uncased<'b>> for Uncased<'a>
[src]
impl<'a, 'b> PartialOrd<Uncased<'b>> for Uncased<'a>
fn partial_cmp(&self, other: &Uncased<'b>) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &Uncased<'b>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
fn gt(&self, other: &Rhs) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
fn ge(&self, other: &Rhs) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl<'a> Ord for Uncased<'a>
[src]
impl<'a> Ord for Uncased<'a>
fn cmp(&self, other: &Self) -> Ordering
[src]
fn cmp(&self, other: &Self) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl<'s> Display for Uncased<'s>
[src]
impl<'s> Display for Uncased<'s>
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<'a, 'b> PartialEq<Uncased<'b>> for Uncased<'a>
[src]
impl<'a, 'b> PartialEq<Uncased<'b>> for Uncased<'a>
fn eq(&self, other: &Uncased<'b>) -> bool
[src]
fn eq(&self, other: &Uncased<'b>) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl<'a> PartialEq<str> for Uncased<'a>
[src]
impl<'a> PartialEq<str> for Uncased<'a>
fn eq(&self, other: &str) -> bool
[src]
fn eq(&self, other: &str) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl<'b> PartialEq<Uncased<'b>> for str
[src]
impl<'b> PartialEq<Uncased<'b>> for str
fn eq(&self, other: &Uncased<'b>) -> bool
[src]
fn eq(&self, other: &Uncased<'b>) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl<'a, 'b> PartialEq<&'b str> for Uncased<'a>
[src]
impl<'a, 'b> PartialEq<&'b str> for Uncased<'a>
fn eq(&self, other: &&'b str) -> bool
[src]
fn eq(&self, other: &&'b str) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl<'a, 'b> PartialEq<Uncased<'b>> for &'a str
[src]
impl<'a, 'b> PartialEq<Uncased<'b>> for &'a str
fn eq(&self, other: &Uncased<'b>) -> bool
[src]
fn eq(&self, other: &Uncased<'b>) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl<'s> Eq for Uncased<'s>
[src]
impl<'s> Eq for Uncased<'s>
impl<'s> Hash for Uncased<'s>
[src]
impl<'s> Hash for Uncased<'s>