Struct iri_string::types::RiFragmentStr
source · [−]#[repr(transparent)]pub struct RiFragmentStr<S> { /* private fields */ }
Expand description
A borrowed slice of an IRI fragment (i.e. after the first #
character).
This corresponds to ifragment
rule in RFC 3987 (and fragment
rule in RFC 3986).
The rule for ifragment
is *( ipchar / "/" / "?" )
.
Valid values
This type can have an IRI fragment.
Note that the IRI foo://bar/baz#qux
has the fragment qux
, not #qux
.
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());
Some characters and sequences cannot used in a fragment.
// `<` and `>` cannot directly appear in an IRI reference.
assert!(IriFragmentStr::new("<not allowed>").is_err());
// Broken percent encoding cannot appear in an IRI reference.
assert!(IriFragmentStr::new("%").is_err());
assert!(IriFragmentStr::new("%GG").is_err());
// Hash sign `#` cannot appear in an IRI fragment.
assert!(IriFragmentStr::new("#hash").is_err());
Implementations
sourceimpl<S: Spec> RiFragmentStr<S>
impl<S: Spec> RiFragmentStr<S>
sourceimpl<S: Spec> RiFragmentStr<S>
impl<S: Spec> RiFragmentStr<S>
sourcepub fn from_prefixed(s: &str) -> Result<&Self, Error>
pub fn from_prefixed(s: &str) -> Result<&Self, Error>
Creates a new &RiFragmentStr
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());
// Broken percent encoding cannot appear in an IRI.
assert!(IriFragmentStr::new("#%").is_err());
assert!(IriFragmentStr::new("#%GG").is_err());
// `#` prefix is expected.
assert!(IriFragmentStr::from_prefixed("").is_err());
assert!(IriFragmentStr::from_prefixed("foo").is_err());
// Hash sign `#` cannot appear in an IRI fragment.
assert!(IriFragmentStr::from_prefixed("##hash").is_err());
sourceimpl RiFragmentStr<IriSpec>
impl RiFragmentStr<IriSpec>
Conversion from an IRI into a URI.
sourcepub fn encode_to_uri(&self) -> UriFragmentString
pub fn encode_to_uri(&self) -> UriFragmentString
Percent-encodes the IRI into a valid URI that identifies the equivalent resource.
If you need more precise control over memory allocation and buffer
handling, use MappedToUri
type.
Examples
use iri_string::types::{IriFragmentStr, UriFragmentString};
let iri = IriFragmentStr::new("alpha-is-\u{03B1}")?;
// Type annotation here is not necessary.
let uri: UriFragmentString = iri.encode_to_uri();
assert_eq!(uri, "alpha-is-%CE%B1");
sourcepub fn as_uri(&self) -> Option<&UriFragmentStr>
pub fn as_uri(&self) -> Option<&UriFragmentStr>
Converts an IRI into a URI without modification, if possible.
This is semantically equivalent to
UriFragmentStr::new(self.as_str()).ok()
.
Examples
use iri_string::types::{IriFragmentStr, UriFragmentStr};
let ascii_iri = IriFragmentStr::new("alpha-is-%CE%B1")?;
assert_eq!(
ascii_iri.as_uri().map(AsRef::as_ref),
Some("alpha-is-%CE%B1")
);
let nonascii_iri = IriFragmentStr::new("alpha-is-\u{03B1}")?;
assert_eq!(nonascii_iri.as_uri(), None);
Trait Implementations
sourceimpl AsRef<RiFragmentStr<IriSpec>> for UriFragmentStr
impl AsRef<RiFragmentStr<IriSpec>> for UriFragmentStr
sourcefn as_ref(&self) -> &IriFragmentStr
fn as_ref(&self) -> &IriFragmentStr
Converts this type into a shared reference of the (usually inferred) input type.
sourceimpl AsRef<RiFragmentStr<IriSpec>> for UriFragmentString
impl AsRef<RiFragmentStr<IriSpec>> for UriFragmentString
sourcefn as_ref(&self) -> &IriFragmentStr
fn as_ref(&self) -> &IriFragmentStr
Converts this type into a shared reference of the (usually inferred) input type.
sourceimpl<S: Spec> AsRef<RiFragmentStr<S>> for RiFragmentStr<S>
impl<S: Spec> AsRef<RiFragmentStr<S>> for RiFragmentStr<S>
sourcefn as_ref(&self) -> &RiFragmentStr<S>
fn as_ref(&self) -> &RiFragmentStr<S>
Converts this type into a shared reference of the (usually inferred) input type.
sourceimpl<S: Spec> AsRef<RiFragmentStr<S>> for RiFragmentString<S>
impl<S: Spec> AsRef<RiFragmentStr<S>> for RiFragmentString<S>
sourcefn as_ref(&self) -> &RiFragmentStr<S>
fn as_ref(&self) -> &RiFragmentStr<S>
Converts this type into a shared reference of the (usually inferred) input type.
sourceimpl<S: Spec> AsRef<str> for RiFragmentStr<S>
impl<S: Spec> AsRef<str> for RiFragmentStr<S>
sourceimpl<S: Spec> Borrow<RiFragmentStr<S>> for RiFragmentString<S>
impl<S: Spec> Borrow<RiFragmentStr<S>> for RiFragmentString<S>
sourcefn borrow(&self) -> &RiFragmentStr<S>
fn borrow(&self) -> &RiFragmentStr<S>
Immutably borrows from an owned value. Read more
sourceimpl<S: Spec> Debug for RiFragmentStr<S>
impl<S: Spec> Debug for RiFragmentStr<S>
sourceimpl<'de: 'a, 'a, S: 'de + Spec> Deserialize<'de> for &'a RiFragmentStr<S>
impl<'de: 'a, 'a, S: 'de + Spec> Deserialize<'de> for &'a RiFragmentStr<S>
sourcefn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<S: Spec> Display for RiFragmentStr<S>
impl<S: Spec> Display for RiFragmentStr<S>
sourceimpl<S: Spec> From<&'_ RiFragmentStr<S>> for Arc<RiFragmentStr<S>>
impl<S: Spec> From<&'_ RiFragmentStr<S>> for Arc<RiFragmentStr<S>>
sourcefn from(s: &RiFragmentStr<S>) -> Self
fn from(s: &RiFragmentStr<S>) -> Self
Converts to this type from the input type.
sourceimpl<S: Spec> From<&'_ RiFragmentStr<S>> for Box<RiFragmentStr<S>>
impl<S: Spec> From<&'_ RiFragmentStr<S>> for Box<RiFragmentStr<S>>
sourcefn from(s: &RiFragmentStr<S>) -> Self
fn from(s: &RiFragmentStr<S>) -> Self
Converts to this type from the input type.
sourceimpl<S: Spec> From<&'_ RiFragmentStr<S>> for Rc<RiFragmentStr<S>>
impl<S: Spec> From<&'_ RiFragmentStr<S>> for Rc<RiFragmentStr<S>>
sourcefn from(s: &RiFragmentStr<S>) -> Self
fn from(s: &RiFragmentStr<S>) -> Self
Converts to this type from the input type.
sourceimpl<S: Spec> From<&'_ RiFragmentStr<S>> for RiFragmentString<S>
impl<S: Spec> From<&'_ RiFragmentStr<S>> for RiFragmentString<S>
sourcefn from(s: &RiFragmentStr<S>) -> Self
fn from(s: &RiFragmentStr<S>) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<&'a RiFragmentStr<IriSpec>> for MappedToUri<'a, IriFragmentStr>
impl<'a> From<&'a RiFragmentStr<IriSpec>> for MappedToUri<'a, IriFragmentStr>
sourcefn from(iri: &'a IriFragmentStr) -> Self
fn from(iri: &'a IriFragmentStr) -> Self
Converts to this type from the input type.
sourceimpl<'a, S: Spec> From<&'a RiFragmentStr<S>> for &'a str
impl<'a, S: Spec> From<&'a RiFragmentStr<S>> for &'a str
sourcefn from(s: &'a RiFragmentStr<S>) -> &'a str
fn from(s: &'a RiFragmentStr<S>) -> &'a str
Converts to this type from the input type.
sourceimpl<'a> From<&'a RiFragmentStr<UriSpec>> for MappedToUri<'a, UriFragmentStr>
impl<'a> From<&'a RiFragmentStr<UriSpec>> for MappedToUri<'a, UriFragmentStr>
sourcefn from(iri: &'a UriFragmentStr) -> Self
fn from(iri: &'a UriFragmentStr) -> Self
Converts to this type from the input type.
sourceimpl<S: Spec> Hash for RiFragmentStr<S>
impl<S: Spec> Hash for RiFragmentStr<S>
sourceimpl<S: Spec> Ord for RiFragmentStr<S>
impl<S: Spec> Ord for RiFragmentStr<S>
sourceimpl<S: Spec> PartialEq<&'_ RiFragmentStr<S>> for str
impl<S: Spec> PartialEq<&'_ RiFragmentStr<S>> for str
sourceimpl<S: Spec, T: Spec> PartialEq<&'_ RiFragmentStr<S>> for RiFragmentStr<T>
impl<S: Spec, T: Spec> PartialEq<&'_ RiFragmentStr<S>> for RiFragmentStr<T>
sourceimpl<S: Spec, T: Spec> PartialEq<&'_ RiFragmentStr<S>> for Cow<'_, RiFragmentStr<T>>
impl<S: Spec, T: Spec> PartialEq<&'_ RiFragmentStr<S>> for Cow<'_, RiFragmentStr<T>>
sourceimpl<S: Spec, T: Spec> PartialEq<&'_ RiFragmentStr<S>> for RiFragmentString<T>
impl<S: Spec, T: Spec> PartialEq<&'_ RiFragmentStr<S>> for RiFragmentString<T>
sourceimpl<S: Spec> PartialEq<&'_ str> for RiFragmentStr<S>
impl<S: Spec> PartialEq<&'_ str> for RiFragmentStr<S>
sourceimpl<S: Spec, T: Spec> PartialEq<Cow<'_, RiFragmentStr<T>>> for &RiFragmentStr<S>
impl<S: Spec, T: Spec> PartialEq<Cow<'_, RiFragmentStr<T>>> for &RiFragmentStr<S>
sourceimpl<S: Spec> PartialEq<RiFragmentStr<S>> for RiFragmentStr<S>
impl<S: Spec> PartialEq<RiFragmentStr<S>> for RiFragmentStr<S>
sourceimpl<S: Spec> PartialEq<RiFragmentStr<S>> for str
impl<S: Spec> PartialEq<RiFragmentStr<S>> for str
sourceimpl<S: Spec> PartialEq<RiFragmentStr<S>> for &str
impl<S: Spec> PartialEq<RiFragmentStr<S>> for &str
sourceimpl<S: Spec, T: Spec> PartialEq<RiFragmentStr<S>> for RiFragmentString<T>
impl<S: Spec, T: Spec> PartialEq<RiFragmentStr<S>> for RiFragmentString<T>
sourceimpl<S: Spec, T: Spec> PartialEq<RiFragmentStr<T>> for &RiFragmentStr<S>
impl<S: Spec, T: Spec> PartialEq<RiFragmentStr<T>> for &RiFragmentStr<S>
sourceimpl<S: Spec, T: Spec> PartialEq<RiFragmentString<T>> for RiFragmentStr<S>
impl<S: Spec, T: Spec> PartialEq<RiFragmentString<T>> for RiFragmentStr<S>
sourceimpl<S: Spec, T: Spec> PartialEq<RiFragmentString<T>> for &RiFragmentStr<S>
impl<S: Spec, T: Spec> PartialEq<RiFragmentString<T>> for &RiFragmentStr<S>
sourceimpl<S: Spec> PartialEq<str> for RiFragmentStr<S>
impl<S: Spec> PartialEq<str> for RiFragmentStr<S>
sourceimpl<S: Spec> PartialEq<str> for &RiFragmentStr<S>
impl<S: Spec> PartialEq<str> for &RiFragmentStr<S>
sourceimpl<S: Spec> PartialOrd<&'_ RiFragmentStr<S>> for str
impl<S: Spec> PartialOrd<&'_ RiFragmentStr<S>> for str
sourcefn partial_cmp(&self, o: &&RiFragmentStr<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &&RiFragmentStr<S>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl<S: Spec, T: Spec> PartialOrd<&'_ RiFragmentStr<S>> for RiFragmentStr<T>
impl<S: Spec, T: Spec> PartialOrd<&'_ RiFragmentStr<S>> for RiFragmentStr<T>
sourcefn partial_cmp(&self, o: &&RiFragmentStr<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &&RiFragmentStr<S>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl<S: Spec> PartialOrd<&'_ RiFragmentStr<S>> for Cow<'_, str>
impl<S: Spec> PartialOrd<&'_ RiFragmentStr<S>> for Cow<'_, str>
sourcefn partial_cmp(&self, o: &&RiFragmentStr<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &&RiFragmentStr<S>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl<S: Spec, T: Spec> PartialOrd<&'_ RiFragmentStr<S>> for Cow<'_, RiFragmentStr<T>>
impl<S: Spec, T: Spec> PartialOrd<&'_ RiFragmentStr<S>> for Cow<'_, RiFragmentStr<T>>
sourcefn partial_cmp(&self, o: &&RiFragmentStr<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &&RiFragmentStr<S>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl<S: Spec, T: Spec> PartialOrd<&'_ RiFragmentStr<S>> for RiFragmentString<T>
impl<S: Spec, T: Spec> PartialOrd<&'_ RiFragmentStr<S>> for RiFragmentString<T>
sourcefn partial_cmp(&self, o: &&RiFragmentStr<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &&RiFragmentStr<S>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl<S: Spec> PartialOrd<&'_ str> for RiFragmentStr<S>
impl<S: Spec> PartialOrd<&'_ str> for RiFragmentStr<S>
sourcefn partial_cmp(&self, o: &&str) -> Option<Ordering>
fn partial_cmp(&self, o: &&str) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl<S: Spec, T: Spec> PartialOrd<Cow<'_, RiFragmentStr<T>>> for &RiFragmentStr<S>
impl<S: Spec, T: Spec> PartialOrd<Cow<'_, RiFragmentStr<T>>> for &RiFragmentStr<S>
sourcefn partial_cmp(&self, o: &Cow<'_, RiFragmentStr<T>>) -> Option<Ordering>
fn partial_cmp(&self, o: &Cow<'_, RiFragmentStr<T>>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl<S: Spec> PartialOrd<Cow<'_, str>> for RiFragmentStr<S>
impl<S: Spec> PartialOrd<Cow<'_, str>> for RiFragmentStr<S>
sourcefn partial_cmp(&self, o: &Cow<'_, str>) -> Option<Ordering>
fn partial_cmp(&self, o: &Cow<'_, str>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl<S: Spec> PartialOrd<Cow<'_, str>> for &RiFragmentStr<S>
impl<S: Spec> PartialOrd<Cow<'_, str>> for &RiFragmentStr<S>
sourcefn partial_cmp(&self, o: &Cow<'_, str>) -> Option<Ordering>
fn partial_cmp(&self, o: &Cow<'_, str>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl<S: Spec> PartialOrd<RiFragmentStr<S>> for RiFragmentStr<S>
impl<S: Spec> PartialOrd<RiFragmentStr<S>> for RiFragmentStr<S>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl<S: Spec> PartialOrd<RiFragmentStr<S>> for str
impl<S: Spec> PartialOrd<RiFragmentStr<S>> for str
sourcefn partial_cmp(&self, o: &RiFragmentStr<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiFragmentStr<S>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl<S: Spec> PartialOrd<RiFragmentStr<S>> for &str
impl<S: Spec> PartialOrd<RiFragmentStr<S>> for &str
sourcefn partial_cmp(&self, o: &RiFragmentStr<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiFragmentStr<S>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl<S: Spec> PartialOrd<RiFragmentStr<S>> for Cow<'_, str>
impl<S: Spec> PartialOrd<RiFragmentStr<S>> for Cow<'_, str>
sourcefn partial_cmp(&self, o: &RiFragmentStr<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiFragmentStr<S>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl<S: Spec, T: Spec> PartialOrd<RiFragmentStr<S>> for RiFragmentString<T>
impl<S: Spec, T: Spec> PartialOrd<RiFragmentStr<S>> for RiFragmentString<T>
sourcefn partial_cmp(&self, o: &RiFragmentStr<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiFragmentStr<S>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl<S: Spec, T: Spec> PartialOrd<RiFragmentStr<T>> for &RiFragmentStr<S>
impl<S: Spec, T: Spec> PartialOrd<RiFragmentStr<T>> for &RiFragmentStr<S>
sourcefn partial_cmp(&self, o: &RiFragmentStr<T>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiFragmentStr<T>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl<S: Spec, T: Spec> PartialOrd<RiFragmentString<T>> for RiFragmentStr<S>
impl<S: Spec, T: Spec> PartialOrd<RiFragmentString<T>> for RiFragmentStr<S>
sourcefn partial_cmp(&self, o: &RiFragmentString<T>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiFragmentString<T>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl<S: Spec, T: Spec> PartialOrd<RiFragmentString<T>> for &RiFragmentStr<S>
impl<S: Spec, T: Spec> PartialOrd<RiFragmentString<T>> for &RiFragmentStr<S>
sourcefn partial_cmp(&self, o: &RiFragmentString<T>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiFragmentString<T>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl<S: Spec> PartialOrd<str> for RiFragmentStr<S>
impl<S: Spec> PartialOrd<str> for RiFragmentStr<S>
sourcefn partial_cmp(&self, o: &str) -> Option<Ordering>
fn partial_cmp(&self, o: &str) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl<S: Spec> PartialOrd<str> for &RiFragmentStr<S>
impl<S: Spec> PartialOrd<str> for &RiFragmentStr<S>
sourcefn partial_cmp(&self, o: &str) -> Option<Ordering>
fn partial_cmp(&self, o: &str) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl<S> Serialize for RiFragmentStr<S> where
S: Spec,
impl<S> Serialize for RiFragmentStr<S> where
S: Spec,
sourceimpl<S: Spec> ToOwned for RiFragmentStr<S>
impl<S: Spec> ToOwned for RiFragmentStr<S>
type Owned = RiFragmentString<S>
type Owned = RiFragmentString<S>
The resulting type after obtaining ownership.
sourcefn to_owned(&self) -> Self::Owned
fn to_owned(&self) -> Self::Owned
Creates owned data from borrowed data, usually by cloning. Read more
sourcefn clone_into(&self, target: &mut Self::Owned)
fn clone_into(&self, target: &mut Self::Owned)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<'a, S: Spec> TryFrom<&'a str> for &'a RiFragmentStr<S>
impl<'a, S: Spec> TryFrom<&'a str> for &'a RiFragmentStr<S>
impl<S: Spec> Eq for RiFragmentStr<S>
Auto Trait Implementations
impl<S> RefUnwindSafe for RiFragmentStr<S>
impl<S> Send for RiFragmentStr<S>
impl<S> !Sized for RiFragmentStr<S>
impl<S> Sync for RiFragmentStr<S>
impl<S> Unpin for RiFragmentStr<S>
impl<S> UnwindSafe for RiFragmentStr<S>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more