[−][src]Struct iri_string::types::RiString
An owned string of an absolute IRI possibly with fragment part.
This corresponds to IRI
rule in RFC 3987 (and URI
rule in RFC 3986).
The rule for IRI
is scheme ":" ihier-part [ "?" iquery ] [ "#" ifragment ]
.
In other words, this is RiAbsoluteString
with fragment part allowed.
For details, see the document for RiStr
.
Enabled by alloc
or std
feature.
Methods
impl<S: Spec> RiString<S>
[src]
pub fn shrink_to_fit(&mut self)
[src]
Shrinks the capacity of the inner buffer to match its length.
impl<S: Spec> RiString<S>
[src]
pub fn into_absolute_and_fragment(
self
) -> (RiAbsoluteString<S>, Option<RiFragmentString<S>>)
[src]
self
) -> (RiAbsoluteString<S>, Option<RiFragmentString<S>>)
Splits the IRI into an absolute IRI part and a fragment part.
A leading #
character is truncated if the fragment part exists.
Examples
use std::convert::TryFrom; let iri = "foo://bar/baz?qux=quux#corge".parse::<IriString>()?; let (absolute, fragment) = iri.into_absolute_and_fragment(); let fragment_expected = IriFragmentString::try_from("corge".to_owned()) .map_err(|e| e.validation_error())?; assert_eq!(absolute, "foo://bar/baz?qux=quux"); assert_eq!(fragment, Some(fragment_expected));
use std::convert::TryFrom; let iri = "foo://bar/baz?qux=quux#".parse::<IriString>()?; let (absolute, fragment) = iri.into_absolute_and_fragment(); let fragment_expected = IriFragmentString::try_from("".to_owned()) .map_err(|e| e.validation_error())?; assert_eq!(absolute, "foo://bar/baz?qux=quux"); assert_eq!(fragment, Some(fragment_expected));
use std::convert::TryFrom; let iri = "foo://bar/baz?qux=quux".parse::<IriString>()?; let (absolute, fragment) = iri.into_absolute_and_fragment(); assert_eq!(absolute, "foo://bar/baz?qux=quux"); assert_eq!(fragment, None);
pub fn into_absolute(self) -> RiAbsoluteString<S>
[src]
Strips the fragment part if exists, and returns an RiAbsoluteString
.
Examples
let iri = "foo://bar/baz?qux=quux#corge".parse::<IriString>()?; assert_eq!(iri.into_absolute(), "foo://bar/baz?qux=quux");
let iri = "foo://bar/baz?qux=quux".parse::<IriString>()?; assert_eq!(iri.into_absolute(), "foo://bar/baz?qux=quux");
pub fn set_fragment(&mut self, fragment: Option<&RiFragmentStr<S>>)
[src]
Sets the fragment part to the given string.
Removes fragment part (and following #
character) if None
is given.
Methods from Deref<Target = RiStr<S>>
pub fn as_str(&self) -> &str
[src]
Returns &str
.
pub fn len(&self) -> usize
[src]
Returns the string length.
pub fn is_empty(&self) -> bool
[src]
Returns whether the string is empty.
pub fn to_absolute_and_fragment(
&self
) -> (&RiAbsoluteStr<S>, Option<&RiFragmentStr<S>>)
[src]
&self
) -> (&RiAbsoluteStr<S>, Option<&RiFragmentStr<S>>)
Splits the IRI into an absolute IRI part and a fragment part.
A leading #
character is truncated if the fragment part exists.
Examples
If the IRI has a fragment part, Some(_)
is returned.
let iri = IriStr::new("foo://bar/baz?qux=quux#corge")?; let (absolute, fragment) = iri.to_absolute_and_fragment(); let fragment_expected = IriFragmentStr::new("corge")?; assert_eq!(absolute, "foo://bar/baz?qux=quux"); assert_eq!(fragment, Some(fragment_expected));
When the fragment part exists but is empty string, Some(_)
is returned.
let iri = IriStr::new("foo://bar/baz?qux=quux#")?; let (absolute, fragment) = iri.to_absolute_and_fragment(); let fragment_expected = IriFragmentStr::new("")?; assert_eq!(absolute, "foo://bar/baz?qux=quux"); assert_eq!(fragment, Some(fragment_expected));
If the IRI has no fragment, None
is returned.
let iri = IriStr::new("foo://bar/baz?qux=quux")?; let (absolute, fragment) = iri.to_absolute_and_fragment(); assert_eq!(absolute, "foo://bar/baz?qux=quux"); assert_eq!(fragment, None);
pub fn to_absolute(&self) -> &RiAbsoluteStr<S>
[src]
Strips the fragment part if exists, and returns &RiAbsoluteStr
.
Examples
let iri = IriStr::new("foo://bar/baz?qux=quux#corge")?; assert_eq!(iri.to_absolute(), "foo://bar/baz?qux=quux");
let iri = IriStr::new("foo://bar/baz?qux=quux")?; assert_eq!(iri.to_absolute(), "foo://bar/baz?qux=quux");
pub fn fragment(&self) -> Option<&RiFragmentStr<S>>
[src]
Returns the fragment part if exists.
A leading #
character is truncated if the fragment part exists.
Examples
let iri = IriStr::new("foo://bar/baz?qux=quux#corge")?; let fragment = IriFragmentStr::new("corge")?; assert_eq!(iri.fragment(), Some(fragment));
let iri = IriStr::new("foo://bar/baz?qux=quux#")?; let fragment = IriFragmentStr::new("")?; assert_eq!(iri.fragment(), Some(fragment));
let iri = IriStr::new("foo://bar/baz?qux=quux")?; assert_eq!(iri.fragment(), None);
Trait Implementations
impl<S: Spec> AsRef<RiReferenceStr<S>> for RiString<S>
[src]
fn as_ref(&self) -> &RiReferenceStr<S>
[src]
impl AsRef<RiStr<IriSpec>> for RiString<UriSpec>
[src]
impl<S: Spec> AsRef<RiStr<S>> for RiString<S>
[src]
impl<S: Spec> AsRef<str> for RiString<S>
[src]
impl<S: Spec> Borrow<RiStr<S>> for RiString<S>
[src]
impl<S: Spec> Borrow<str> for RiString<S>
[src]
impl<S: Spec> Clone for RiString<S>
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<S: Spec> Debug for RiString<S>
[src]
impl<S: Spec> Deref for RiString<S>
[src]
impl<'de, S: Spec> Deserialize<'de> for RiString<S>
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
impl<S: Spec> Display for RiString<S>
[src]
impl<S: Spec> Eq for RiString<S>
[src]
impl<'_, S: Spec> From<&'_ RiStr<S>> for RiString<S>
[src]
impl<S: Spec> From<RiAbsoluteString<S>> for RiString<S>
[src]
fn from(s: RiAbsoluteString<S>) -> RiString<S>
[src]
impl<S: Spec> From<RiString<S>> for String
[src]
impl<S: Spec> From<RiString<S>> for RiReferenceString<S>
[src]
fn from(s: RiString<S>) -> RiReferenceString<S>
[src]
impl<S: Spec> FromStr for RiString<S>
[src]
type Err = Error
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Self, Self::Err>
[src]
impl<S: Spec> Hash for RiString<S>
[src]
fn hash<H: Hasher>(&self, state: &mut H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl<S: Spec> Ord for RiString<S>
[src]
fn cmp(&self, other: &Self) -> Ordering
[src]
fn max(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
1.21.0[src]
fn clamp(self, min: Self, max: Self) -> Self
[src]
impl<'_, S: Spec, T: Spec> PartialEq<&'_ RiAbsoluteStr<S>> for RiString<T>
[src]
fn eq(&self, o: &&RiAbsoluteStr<S>) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_, S: Spec, T: Spec> PartialEq<&'_ RiReferenceStr<T>> for RiString<S>
[src]
fn eq(&self, o: &&RiReferenceStr<T>) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_, S: Spec, T: Spec> PartialEq<&'_ RiStr<S>> for RiString<T>
[src]
impl<'_, S: Spec> PartialEq<&'_ str> for RiString<S>
[src]
impl<'_, S: Spec, T: Spec> PartialEq<Cow<'_, RiAbsoluteStr<S>>> for RiString<T>
[src]
fn eq(&self, o: &Cow<RiAbsoluteStr<S>>) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_, S: Spec, T: Spec> PartialEq<Cow<'_, RiReferenceStr<T>>> for RiString<S>
[src]
fn eq(&self, o: &Cow<RiReferenceStr<T>>) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_, S: Spec, T: Spec> PartialEq<Cow<'_, RiStr<S>>> for RiString<T>
[src]
impl<'_, S: Spec> PartialEq<Cow<'_, str>> for RiString<S>
[src]
impl<S: Spec, T: Spec> PartialEq<RiAbsoluteStr<S>> for RiString<T>
[src]
fn eq(&self, o: &RiAbsoluteStr<S>) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S: Spec, T: Spec> PartialEq<RiAbsoluteString<S>> for RiString<T>
[src]
fn eq(&self, o: &RiAbsoluteString<S>) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S: Spec, T: Spec> PartialEq<RiReferenceStr<T>> for RiString<S>
[src]
fn eq(&self, o: &RiReferenceStr<T>) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S: Spec, T: Spec> PartialEq<RiReferenceString<T>> for RiString<S>
[src]
fn eq(&self, o: &RiReferenceString<T>) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S: Spec, T: Spec> PartialEq<RiStr<S>> for RiString<T>
[src]
impl<S: Spec> PartialEq<RiString<S>> for str
[src]
impl<'_, S: Spec> PartialEq<RiString<S>> for &'_ str
[src]
impl<'_, S: Spec> PartialEq<RiString<S>> for Cow<'_, str>
[src]
impl<S: Spec> PartialEq<RiString<S>> for String
[src]
impl<S: Spec, T: Spec> PartialEq<RiString<S>> for RiReferenceStr<T>
[src]
impl<'_, S: Spec, T: Spec> PartialEq<RiString<S>> for &'_ RiReferenceStr<T>
[src]
impl<'_, S: Spec, T: Spec> PartialEq<RiString<S>> for Cow<'_, RiReferenceStr<T>>
[src]
impl<S: Spec, T: Spec> PartialEq<RiString<S>> for RiReferenceString<T>
[src]
impl<S: Spec, T: Spec> PartialEq<RiString<T>> for RiAbsoluteStr<S>
[src]
impl<'_, S: Spec, T: Spec> PartialEq<RiString<T>> for &'_ RiAbsoluteStr<S>
[src]
impl<'_, S: Spec, T: Spec> PartialEq<RiString<T>> for Cow<'_, RiAbsoluteStr<S>>
[src]
impl<S: Spec, T: Spec> PartialEq<RiString<T>> for RiAbsoluteString<S>
[src]
impl<S: Spec, T: Spec> PartialEq<RiString<T>> for RiString<S>
[src]
fn eq(&self, other: &RiString<T>) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S: Spec, T: Spec> PartialEq<RiString<T>> for RiStr<S>
[src]
impl<'_, S: Spec, T: Spec> PartialEq<RiString<T>> for &'_ RiStr<S>
[src]
impl<'_, S: Spec, T: Spec> PartialEq<RiString<T>> for Cow<'_, RiStr<S>>
[src]
impl<S: Spec> PartialEq<String> for RiString<S>
[src]
impl<S: Spec> PartialEq<str> for RiString<S>
[src]
impl<'_, S: Spec, T: Spec> PartialOrd<&'_ RiAbsoluteStr<S>> for RiString<T>
[src]
fn partial_cmp(&self, o: &&RiAbsoluteStr<S>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_, S: Spec, T: Spec> PartialOrd<&'_ RiReferenceStr<T>> for RiString<S>
[src]
fn partial_cmp(&self, o: &&RiReferenceStr<T>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_, S: Spec, T: Spec> PartialOrd<&'_ RiStr<S>> for RiString<T>
[src]
fn partial_cmp(&self, o: &&RiStr<S>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_, S: Spec> PartialOrd<&'_ str> for RiString<S>
[src]
fn partial_cmp(&self, o: &&str) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_, S: Spec, T: Spec> PartialOrd<Cow<'_, RiAbsoluteStr<S>>> for RiString<T>
[src]
fn partial_cmp(&self, o: &Cow<RiAbsoluteStr<S>>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_, S: Spec, T: Spec> PartialOrd<Cow<'_, RiReferenceStr<T>>> for RiString<S>
[src]
fn partial_cmp(&self, o: &Cow<RiReferenceStr<T>>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_, S: Spec, T: Spec> PartialOrd<Cow<'_, RiStr<S>>> for RiString<T>
[src]
fn partial_cmp(&self, o: &Cow<RiStr<S>>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_, S: Spec> PartialOrd<Cow<'_, str>> for RiString<S>
[src]
fn partial_cmp(&self, o: &Cow<str>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S: Spec, T: Spec> PartialOrd<RiAbsoluteStr<S>> for RiString<T>
[src]
fn partial_cmp(&self, o: &RiAbsoluteStr<S>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S: Spec, T: Spec> PartialOrd<RiAbsoluteString<S>> for RiString<T>
[src]
fn partial_cmp(&self, o: &RiAbsoluteString<S>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S: Spec, T: Spec> PartialOrd<RiReferenceStr<T>> for RiString<S>
[src]
fn partial_cmp(&self, o: &RiReferenceStr<T>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S: Spec, T: Spec> PartialOrd<RiReferenceString<T>> for RiString<S>
[src]
fn partial_cmp(&self, o: &RiReferenceString<T>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S: Spec, T: Spec> PartialOrd<RiStr<S>> for RiString<T>
[src]
fn partial_cmp(&self, o: &RiStr<S>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S: Spec> PartialOrd<RiString<S>> for str
[src]
fn partial_cmp(&self, o: &RiString<S>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_, S: Spec> PartialOrd<RiString<S>> for &'_ str
[src]
fn partial_cmp(&self, o: &RiString<S>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_, S: Spec> PartialOrd<RiString<S>> for Cow<'_, str>
[src]
fn partial_cmp(&self, o: &RiString<S>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S: Spec> PartialOrd<RiString<S>> for String
[src]
fn partial_cmp(&self, o: &RiString<S>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S: Spec, T: Spec> PartialOrd<RiString<S>> for RiReferenceStr<T>
[src]
fn partial_cmp(&self, o: &RiString<S>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_, S: Spec, T: Spec> PartialOrd<RiString<S>> for &'_ RiReferenceStr<T>
[src]
fn partial_cmp(&self, o: &RiString<S>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_, S: Spec, T: Spec> PartialOrd<RiString<S>> for Cow<'_, RiReferenceStr<T>>
[src]
fn partial_cmp(&self, o: &RiString<S>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S: Spec, T: Spec> PartialOrd<RiString<S>> for RiReferenceString<T>
[src]
fn partial_cmp(&self, o: &RiString<S>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S: Spec, T: Spec> PartialOrd<RiString<T>> for RiAbsoluteStr<S>
[src]
fn partial_cmp(&self, o: &RiString<T>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_, S: Spec, T: Spec> PartialOrd<RiString<T>> for &'_ RiAbsoluteStr<S>
[src]
fn partial_cmp(&self, o: &RiString<T>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_, S: Spec, T: Spec> PartialOrd<RiString<T>> for Cow<'_, RiAbsoluteStr<S>>
[src]
fn partial_cmp(&self, o: &RiString<T>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S: Spec, T: Spec> PartialOrd<RiString<T>> for RiAbsoluteString<S>
[src]
fn partial_cmp(&self, o: &RiString<T>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S: Spec, T: Spec> PartialOrd<RiString<T>> for RiString<S>
[src]
fn partial_cmp(&self, other: &RiString<T>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S: Spec, T: Spec> PartialOrd<RiString<T>> for RiStr<S>
[src]
fn partial_cmp(&self, o: &RiString<T>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_, S: Spec, T: Spec> PartialOrd<RiString<T>> for &'_ RiStr<S>
[src]
fn partial_cmp(&self, o: &RiString<T>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_, S: Spec, T: Spec> PartialOrd<RiString<T>> for Cow<'_, RiStr<S>>
[src]
fn partial_cmp(&self, o: &RiString<T>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S: Spec> PartialOrd<String> for RiString<S>
[src]
fn partial_cmp(&self, o: &String) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S: Spec> PartialOrd<str> for RiString<S>
[src]
fn partial_cmp(&self, o: &str) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<S> Serialize for RiString<S>
[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl<'_, S: Spec> TryFrom<&'_ str> for RiString<S>
[src]
type Error = Error
The type returned in the event of a conversion error.
fn try_from(s: &str) -> Result<Self, Self::Error>
[src]
impl<S: Spec> TryFrom<RiReferenceString<S>> for RiString<S>
[src]
type Error = CreationError<RiReferenceString<S>>
The type returned in the event of a conversion error.
fn try_from(s: RiReferenceString<S>) -> Result<Self, Self::Error>
[src]
impl<S: Spec> TryFrom<RiString<S>> for RiAbsoluteString<S>
[src]
type Error = CreationError<RiString<S>>
The type returned in the event of a conversion error.
fn try_from(s: RiString<S>) -> Result<Self, Self::Error>
[src]
impl<S: Spec> TryFrom<String> for RiString<S>
[src]
Auto Trait Implementations
impl<S> RefUnwindSafe for RiString<S>
impl<S> Send for RiString<S>
impl<S> Sync for RiString<S>
impl<S> Unpin for RiString<S>
impl<S> UnwindSafe for RiString<S>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,