[][src]Struct iri_string::types::IriFragmentStr

#[repr(transparent)]
pub struct IriFragmentStr(_);

A borrowed slice of an IRI.

This corresponds to ifragment rule in RFC 3987. This is *( ipchar / "/" / "?" ).

Methods

impl IriFragmentStr[src]

pub fn new(s: &str) -> Result<&Self, Error>[src]

Creates a new &IriFragmentStr.

Examples

assert!(IriFragmentStr::new("").is_ok());
assert!(IriFragmentStr::new("foo").is_ok());
assert!(IriFragmentStr::new("foo/bar").is_ok());
assert!(IriFragmentStr::new("/foo/bar").is_ok());
assert!(IriFragmentStr::new("//foo/bar").is_ok());
assert!(IriFragmentStr::new("https://user:pass@example.com:8080").is_ok());
assert!(IriFragmentStr::new("https://example.com/").is_ok());

// `<` and `>` cannot directly appear in an IRI.
assert!(IriFragmentStr::new("<not allowed>").is_err());

pub fn from_prefixed(s: &str) -> Result<&Self, Error>[src]

Creates a new &IriFragmentStr from the fragment part prefixed by #.

Examples

assert!(IriFragmentStr::from_prefixed("#").is_ok());
assert!(IriFragmentStr::from_prefixed("#foo").is_ok());
assert!(IriFragmentStr::from_prefixed("#foo/bar").is_ok());
assert!(IriFragmentStr::from_prefixed("#/foo/bar").is_ok());
assert!(IriFragmentStr::from_prefixed("#//foo/bar").is_ok());
assert!(IriFragmentStr::from_prefixed("#https://user:pass@example.com:8080").is_ok());
assert!(IriFragmentStr::from_prefixed("#https://example.com/").is_ok());

// `<` and `>` cannot directly appear in an IRI.
assert!(IriFragmentStr::from_prefixed("#<not allowed>").is_err());
// `#` prefix is expected.
assert!(IriFragmentStr::from_prefixed("").is_err());
assert!(IriFragmentStr::from_prefixed("foo").is_err());

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

Returns &str.

Trait Implementations

impl AsRef<str> for IriFragmentStr where
    str: AsRef<str>, 

impl AsRef<IriFragmentStr> for IriFragmentStr

impl AsRef<IriFragmentStr> for IriFragmentString

impl<'a> From<&'a IriFragmentStr> for Arc<IriFragmentStr> where
    Arc<str>: From<&'a str>, 

impl<'a> From<&'a IriFragmentStr> for Box<IriFragmentStr> where
    Box<str>: From<&'a str>, 

impl<'a> From<&'a IriFragmentStr> for Rc<IriFragmentStr> where
    Rc<str>: From<&'a str>, 

impl<'a> Default for &'a IriFragmentStr where
    &'a str: Default

impl Eq for IriFragmentStr[src]

impl Ord for IriFragmentStr[src]

impl PartialEq<IriFragmentStr> for IriFragmentStr[src]

impl<'_> PartialEq<&'_ IriFragmentStr> for IriFragmentStr

impl<'_> PartialEq<IriFragmentStr> for &'_ IriFragmentStr

impl<'_> PartialEq<Cow<'_, IriFragmentStr>> for IriFragmentStr

impl<'_> PartialEq<IriFragmentStr> for Cow<'_, IriFragmentStr>

impl PartialEq<str> for IriFragmentStr

impl PartialEq<IriFragmentStr> for str

impl<'_> PartialEq<&'_ str> for IriFragmentStr

impl<'_> PartialEq<IriFragmentStr> for &'_ str

impl<'_> PartialEq<str> for &'_ IriFragmentStr

impl<'_> PartialEq<&'_ IriFragmentStr> for str

impl<'_> PartialEq<Cow<'_, str>> for IriFragmentStr

impl<'_> PartialEq<IriFragmentStr> for Cow<'_, str>

impl<'_, '_> PartialEq<Cow<'_, str>> for &'_ IriFragmentStr

impl<'_, '_> PartialEq<&'_ IriFragmentStr> for Cow<'_, str>

impl PartialEq<IriFragmentStr> for IriFragmentString

impl PartialEq<IriFragmentString> for IriFragmentStr

impl<'_> PartialEq<&'_ IriFragmentStr> for IriFragmentString

impl<'_> PartialEq<IriFragmentString> for &'_ IriFragmentStr

impl PartialOrd<IriFragmentStr> for IriFragmentStr[src]

impl<'_> PartialOrd<&'_ IriFragmentStr> for IriFragmentStr

impl<'_> PartialOrd<IriFragmentStr> for &'_ IriFragmentStr

impl<'_> PartialOrd<Cow<'_, IriFragmentStr>> for IriFragmentStr

impl<'_> PartialOrd<IriFragmentStr> for Cow<'_, IriFragmentStr>

impl PartialOrd<str> for IriFragmentStr

impl PartialOrd<IriFragmentStr> for str

impl<'_> PartialOrd<&'_ str> for IriFragmentStr

impl<'_> PartialOrd<IriFragmentStr> for &'_ str

impl<'_> PartialOrd<str> for &'_ IriFragmentStr

impl<'_> PartialOrd<&'_ IriFragmentStr> for str

impl<'_> PartialOrd<Cow<'_, str>> for IriFragmentStr

impl<'_> PartialOrd<IriFragmentStr> for Cow<'_, str>

impl<'_, '_> PartialOrd<Cow<'_, str>> for &'_ IriFragmentStr

impl<'_, '_> PartialOrd<&'_ IriFragmentStr> for Cow<'_, str>

impl PartialOrd<IriFragmentStr> for IriFragmentString

impl PartialOrd<IriFragmentString> for IriFragmentStr

impl<'_> PartialOrd<&'_ IriFragmentStr> for IriFragmentString

impl<'_> PartialOrd<IriFragmentString> for &'_ IriFragmentStr

impl ToOwned for IriFragmentStr where
    String: From<&'a str>, 

type Owned = IriFragmentString

The resulting type after obtaining ownership.

impl Display for IriFragmentStr where
    str: Display

impl Debug for IriFragmentStr[src]

impl<'a> TryFrom<&'a str> for &'a IriFragmentStr

type Error = Error

The type returned in the event of a conversion error.

impl Hash for IriFragmentStr[src]

impl StructuralPartialEq for IriFragmentStr[src]

impl StructuralEq for IriFragmentStr[src]

impl Borrow<IriFragmentStr> for IriFragmentString

impl Serialize for IriFragmentStr[src]

impl<'de: 'a, 'a> Deserialize<'de> for &'a IriFragmentStr[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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

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