[−][src]Struct iri_string::types::IriString
An owned string of an absolute IRI possibly with fragment part.
This corresponds to IRI
rule in RFC 3987.
This is scheme ":" ihier-part [ "?" iquery ] [ "#" ifragment ]
.
In other words, this is AbsoluteIriString
with fragment part allowed.
See documentation for IriStr
.
Methods
impl IriString
[src]
pub fn into_absolute_and_fragment(
self
) -> (AbsoluteIriString, Option<IriFragmentString>)
[src]
self
) -> (AbsoluteIriString, Option<IriFragmentString>)
Splits the IRI into absolute IRI part and 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())?; 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())?; 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) -> AbsoluteIriString
[src]
Strips the fragment part if exists, and returns AbsoluteIriString
.
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<&IriFragmentStr>)
[src]
Sets the fragment part to the given string.
Removes fragment part (and following #
character) if None
is given.
pub fn shrink_to_fit(&mut self)
[src]
Shrinks the capacity of the inner buffer to match its length.
Methods from Deref<Target = IriStr>
pub fn to_absolute_and_fragment(
&self
) -> (&AbsoluteIriStr, Option<&IriFragmentStr>)
[src]
&self
) -> (&AbsoluteIriStr, Option<&IriFragmentStr>)
Splits the IRI into absolute IRI part and fragment part.
A leading #
character is truncated if the fragment part exists.
Examples
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));
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));
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) -> &AbsoluteIriStr
[src]
Strips the fragment part if exists, and returns &AbsoluteIriStr
.
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 as_str(&self) -> &str
[src]
Returns &str
.
Trait Implementations
impl AsRef<str> for IriString where
str: AsRef<str>,
str: AsRef<str>,
impl AsRef<IriStr> for IriString
impl AsRef<IriReferenceStr> for IriString
[src]
fn as_ref(&self) -> &IriReferenceStr
[src]
impl From<AbsoluteIriString> for IriString
[src]
fn from(s: AbsoluteIriString) -> IriString
[src]
impl From<IriString> for String
impl From<IriString> for IriReferenceString
[src]
fn from(s: IriString) -> IriReferenceString
[src]
impl Clone for IriString
[src]
impl Eq for IriString
[src]
impl Ord for IriString
[src]
fn cmp(&self, other: &IriString) -> 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 PartialEq<IriString> for AbsoluteIriStr
[src]
impl PartialEq<AbsoluteIriStr> for IriString
[src]
fn eq(&self, o: &AbsoluteIriStr) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_> PartialEq<IriString> for &'_ AbsoluteIriStr
[src]
impl<'_> PartialEq<&'_ AbsoluteIriStr> for IriString
[src]
fn eq(&self, o: &&AbsoluteIriStr) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<IriString> for IriString
[src]
impl PartialEq<IriStr> for IriString
impl PartialEq<IriString> for IriStr
impl<'_> PartialEq<&'_ IriStr> for IriString
impl<'_> PartialEq<IriString> for &'_ IriStr
impl<'_> PartialEq<Cow<'_, IriStr>> for IriString
impl<'_> PartialEq<IriString> for Cow<'_, IriStr>
impl PartialEq<str> for IriString
impl PartialEq<IriString> for str
impl<'_> PartialEq<&'_ str> for IriString
impl<'_> PartialEq<IriString> for &'_ str
impl<'_> PartialEq<Cow<'_, str>> for IriString
impl<'_> PartialEq<IriString> for Cow<'_, str>
impl PartialEq<IriReferenceStr> for IriString
[src]
fn eq(&self, o: &IriReferenceStr) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<IriString> for IriReferenceStr
[src]
impl<'_> PartialEq<&'_ IriReferenceStr> for IriString
[src]
fn eq(&self, o: &&IriReferenceStr) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_> PartialEq<IriString> for &'_ IriReferenceStr
[src]
impl<'_> PartialEq<Cow<'_, IriReferenceStr>> for IriString
[src]
fn eq(&self, o: &Cow<IriReferenceStr>) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_> PartialEq<IriString> for Cow<'_, IriReferenceStr>
[src]
impl PartialOrd<IriString> for AbsoluteIriStr
[src]
fn partial_cmp(&self, o: &IriString) -> 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 PartialOrd<AbsoluteIriStr> for IriString
[src]
fn partial_cmp(&self, o: &AbsoluteIriStr) -> 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<'_> PartialOrd<IriString> for &'_ AbsoluteIriStr
[src]
fn partial_cmp(&self, o: &IriString) -> 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<'_> PartialOrd<&'_ AbsoluteIriStr> for IriString
[src]
fn partial_cmp(&self, o: &&AbsoluteIriStr) -> 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 PartialOrd<IriString> for IriString
[src]
fn partial_cmp(&self, other: &IriString) -> Option<Ordering>
[src]
fn lt(&self, other: &IriString) -> bool
[src]
fn le(&self, other: &IriString) -> bool
[src]
fn gt(&self, other: &IriString) -> bool
[src]
fn ge(&self, other: &IriString) -> bool
[src]
impl PartialOrd<IriStr> for IriString
fn partial_cmp(&self, other: &IriStr) -> Option<Ordering>
#[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 PartialOrd<IriString> for IriStr
fn partial_cmp(&self, other: &IriString) -> Option<Ordering>
#[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<'_> PartialOrd<&'_ IriStr> for IriString
fn partial_cmp(&self, other: &&IriStr) -> Option<Ordering>
#[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<'_> PartialOrd<IriString> for &'_ IriStr
fn partial_cmp(&self, other: &IriString) -> Option<Ordering>
#[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<'_> PartialOrd<Cow<'_, IriStr>> for IriString
fn partial_cmp(&self, other: &Cow<IriStr>) -> Option<Ordering>
#[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<'_> PartialOrd<IriString> for Cow<'_, IriStr>
fn partial_cmp(&self, other: &IriString) -> Option<Ordering>
#[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 PartialOrd<str> for IriString
fn partial_cmp(&self, other: &str) -> Option<Ordering>
#[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 PartialOrd<IriString> for str
fn partial_cmp(&self, other: &IriString) -> Option<Ordering>
#[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<'_> PartialOrd<&'_ str> for IriString
fn partial_cmp(&self, other: &&str) -> Option<Ordering>
#[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<'_> PartialOrd<IriString> for &'_ str
fn partial_cmp(&self, other: &IriString) -> Option<Ordering>
#[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<'_> PartialOrd<Cow<'_, str>> for IriString
fn partial_cmp(&self, other: &Cow<str>) -> Option<Ordering>
#[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<'_> PartialOrd<IriString> for Cow<'_, str>
fn partial_cmp(&self, other: &IriString) -> Option<Ordering>
#[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 PartialOrd<IriReferenceStr> for IriString
[src]
fn partial_cmp(&self, o: &IriReferenceStr) -> 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 PartialOrd<IriString> for IriReferenceStr
[src]
fn partial_cmp(&self, o: &IriString) -> 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<'_> PartialOrd<&'_ IriReferenceStr> for IriString
[src]
fn partial_cmp(&self, o: &&IriReferenceStr) -> 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<'_> PartialOrd<IriString> for &'_ IriReferenceStr
[src]
fn partial_cmp(&self, o: &IriString) -> 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<'_> PartialOrd<Cow<'_, IriReferenceStr>> for IriString
[src]
fn partial_cmp(&self, o: &Cow<IriReferenceStr>) -> 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<'_> PartialOrd<IriString> for Cow<'_, IriReferenceStr>
[src]
fn partial_cmp(&self, o: &IriString) -> 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 Display for IriString where
IriStr: Display,
IriStr: Display,
impl Debug for IriString
[src]
impl TryFrom<IriString> for AbsoluteIriString
[src]
type Error = IriCreationError<String>
The type returned in the event of a conversion error.
fn try_from(v: IriString) -> Result<Self, Self::Error>
[src]
impl TryFrom<String> for IriString
type Error = IriCreationError<String>
The type returned in the event of a conversion error.
fn try_from(inner: String) -> Result<Self, Self::Error>
impl TryFrom<IriReferenceString> for IriString
[src]
type Error = IriCreationError<String>
The type returned in the event of a conversion error.
fn try_from(v: IriReferenceString) -> Result<Self, Self::Error>
[src]
impl FromStr for IriString
type Err = Error
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Self, Self::Err>
impl Deref for IriString
impl Hash for IriString
[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 StructuralPartialEq for IriString
[src]
impl StructuralEq for IriString
[src]
impl Borrow<str> for IriString where
str: Borrow<str>,
str: Borrow<str>,
impl Borrow<IriStr> for IriString
impl Serialize for IriString
[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl<'de> Deserialize<'de> for IriString
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
Auto Trait Implementations
impl Send for IriString
impl Sync for IriString
impl Unpin for IriString
impl UnwindSafe for IriString
impl RefUnwindSafe for IriString
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
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>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
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> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,