[−][src]Struct iri_string::types::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>,
str: AsRef<str>,
impl AsRef<IriFragmentStr> for IriFragmentStr
fn as_ref(&self) -> &IriFragmentStr
impl AsRef<IriFragmentStr> for IriFragmentString
fn as_ref(&self) -> &IriFragmentStr
impl<'a> From<&'a IriFragmentStr> for Arc<IriFragmentStr> where
Arc<str>: From<&'a str>,
Arc<str>: From<&'a str>,
fn from(s: &'a IriFragmentStr) -> Self
impl<'a> From<&'a IriFragmentStr> for Box<IriFragmentStr> where
Box<str>: From<&'a str>,
Box<str>: From<&'a str>,
fn from(s: &'a IriFragmentStr) -> Self
impl<'a> From<&'a IriFragmentStr> for Rc<IriFragmentStr> where
Rc<str>: From<&'a str>,
Rc<str>: From<&'a str>,
fn from(s: &'a IriFragmentStr) -> Self
impl<'a> Default for &'a IriFragmentStr where
&'a str: Default,
&'a str: Default,
fn default() -> Self
impl Eq for IriFragmentStr
[src]
impl Ord for IriFragmentStr
[src]
fn cmp(&self, other: &IriFragmentStr) -> 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<IriFragmentStr> for IriFragmentStr
[src]
fn eq(&self, other: &IriFragmentStr) -> bool
[src]
fn ne(&self, other: &IriFragmentStr) -> bool
[src]
impl<'_> PartialEq<&'_ IriFragmentStr> for IriFragmentStr
fn eq(&self, other: &&IriFragmentStr) -> bool
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_> PartialEq<IriFragmentStr> for &'_ IriFragmentStr
impl<'_> PartialEq<Cow<'_, IriFragmentStr>> for IriFragmentStr
fn eq(&self, other: &Cow<IriFragmentStr>) -> bool
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
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
fn eq(&self, other: &&IriFragmentStr) -> bool
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_> PartialEq<Cow<'_, str>> for IriFragmentStr
impl<'_> PartialEq<IriFragmentStr> for Cow<'_, str>
impl<'_, '_> PartialEq<Cow<'_, str>> for &'_ IriFragmentStr
impl<'_, '_> PartialEq<&'_ IriFragmentStr> for Cow<'_, str>
fn eq(&self, other: &&IriFragmentStr) -> bool
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialEq<IriFragmentStr> for IriFragmentString
impl PartialEq<IriFragmentString> for IriFragmentStr
fn eq(&self, other: &IriFragmentString) -> bool
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_> PartialEq<&'_ IriFragmentStr> for IriFragmentString
fn eq(&self, other: &&IriFragmentStr) -> bool
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'_> PartialEq<IriFragmentString> for &'_ IriFragmentStr
fn eq(&self, other: &IriFragmentString) -> bool
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialOrd<IriFragmentStr> for IriFragmentStr
[src]
fn partial_cmp(&self, other: &IriFragmentStr) -> Option<Ordering>
[src]
fn lt(&self, other: &IriFragmentStr) -> bool
[src]
fn le(&self, other: &IriFragmentStr) -> bool
[src]
fn gt(&self, other: &IriFragmentStr) -> bool
[src]
fn ge(&self, other: &IriFragmentStr) -> bool
[src]
impl<'_> PartialOrd<&'_ IriFragmentStr> for IriFragmentStr
fn partial_cmp(&self, other: &&IriFragmentStr) -> 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<IriFragmentStr> for &'_ IriFragmentStr
fn partial_cmp(&self, other: &IriFragmentStr) -> 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<'_, IriFragmentStr>> for IriFragmentStr
fn partial_cmp(&self, other: &Cow<IriFragmentStr>) -> 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<IriFragmentStr> for Cow<'_, IriFragmentStr>
fn partial_cmp(&self, other: &IriFragmentStr) -> 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 IriFragmentStr
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<IriFragmentStr> for str
fn partial_cmp(&self, other: &IriFragmentStr) -> 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 IriFragmentStr
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<IriFragmentStr> for &'_ str
fn partial_cmp(&self, other: &IriFragmentStr) -> 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 &'_ IriFragmentStr
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<&'_ IriFragmentStr> for str
fn partial_cmp(&self, other: &&IriFragmentStr) -> 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 IriFragmentStr
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<IriFragmentStr> for Cow<'_, str>
fn partial_cmp(&self, other: &IriFragmentStr) -> 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 &'_ IriFragmentStr
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<&'_ IriFragmentStr> for Cow<'_, str>
fn partial_cmp(&self, other: &&IriFragmentStr) -> 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<IriFragmentStr> for IriFragmentString
fn partial_cmp(&self, other: &IriFragmentStr) -> 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<IriFragmentString> for IriFragmentStr
fn partial_cmp(&self, other: &IriFragmentString) -> 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<&'_ IriFragmentStr> for IriFragmentString
fn partial_cmp(&self, other: &&IriFragmentStr) -> 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<IriFragmentString> for &'_ IriFragmentStr
fn partial_cmp(&self, other: &IriFragmentString) -> 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 ToOwned for IriFragmentStr where
String: From<&'a str>,
String: From<&'a str>,
type Owned = IriFragmentString
The resulting type after obtaining ownership.
fn to_owned(&self) -> Self::Owned
fn clone_into(&self, target: &mut Self::Owned)
[src]
impl Display for IriFragmentStr where
str: Display,
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.
fn try_from(s: &'a str) -> Result<Self, Self::Error>
impl Hash for IriFragmentStr
[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 IriFragmentStr
[src]
impl StructuralEq for IriFragmentStr
[src]
impl Borrow<IriFragmentStr> for IriFragmentString
fn borrow(&self) -> &IriFragmentStr
impl Serialize for IriFragmentStr
[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl<'de: 'a, 'a> Deserialize<'de> for &'a IriFragmentStr
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
Auto Trait Implementations
impl Send for IriFragmentStr
impl Sync for IriFragmentStr
impl Unpin for IriFragmentStr
impl UnwindSafe for IriFragmentStr
impl RefUnwindSafe for IriFragmentStr
Blanket Implementations
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> 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,