Struct iri_string::types::RiQueryString
source · [−]pub struct RiQueryString<S> { /* private fields */ }
Expand description
An owned string of an IRI fragment (i.e. after the first #
character).
This corresponds to iquery
rule in RFC 3987 (and query
rule in RFC 3986).
The rule for absolute-IRI
is *( ipchar / iprivate / "/" / "?" )
.
For details, see the documentation for RiQueryStr
.
Enabled by alloc
or std
feature.
Implementations
sourceimpl<S: Spec> RiQueryString<S>
impl<S: Spec> RiQueryString<S>
sourcepub fn shrink_to_fit(&mut self)
pub fn shrink_to_fit(&mut self)
Shrinks the capacity of the inner buffer to match its length.
sourcepub fn as_slice(&self) -> &RiQueryStr<S>
pub fn as_slice(&self) -> &RiQueryStr<S>
Returns the borrowed IRI string slice.
This is equivalent to &*self
.
sourceimpl RiQueryString<IriSpec>
impl RiQueryString<IriSpec>
Conversion from an IRI into a URI.
sourcepub fn encode_to_uri_inline(&mut self)
pub fn encode_to_uri_inline(&mut self)
Percent-encodes the IRI into a valid URI that identifies the equivalent resource.
After the encode, the IRI is also a valid URI.
If you want a new URI string rather than modifying the IRI
string, or if you need more precise control over memory
allocation and buffer handling, use
encode_to_uri
method.
Panics
Panics if the memory allocation failed.
Examples
#[cfg(feature = "alloc")] {
use iri_string::types::IriQueryString;
let mut iri = IriQueryString::try_from("alpha-is-\u{03B1}")?;
iri.encode_to_uri_inline();
assert_eq!(iri, "alpha-is-%CE%B1");
sourcepub fn try_encode_to_uri_inline(&mut self) -> Result<(), TryReserveError>
pub fn try_encode_to_uri_inline(&mut self) -> Result<(), TryReserveError>
Percent-encodes the IRI into a valid URI that identifies the equivalent resource.
After the encode, the IRI is also a valid URI.
If you want a new URI string rather than modifying the IRI
string, or if you need more precise control over memory
allocation and buffer handling, use
encode_to_uri
method.
Examples
#[cfg(feature = "alloc")] {
use iri_string::types::IriQueryString;
let mut iri = IriQueryString::try_from("alpha-is-\u{03B1}")?;
iri.try_encode_to_uri_inline()
.expect("failed to allocate memory");
assert_eq!(iri, "alpha-is-%CE%B1");
sourcepub fn encode_into_uri(self) -> UriQueryString
pub fn encode_into_uri(self) -> UriQueryString
Percent-encodes the IRI into a valid URI that identifies the equivalent resource.
If you want a new URI string rather than modifying the IRI
string, or if you need more precise control over memory
allocation and buffer handling, use
encode_to_uri
method.
Examples
#[cfg(feature = "alloc")] {
use iri_string::types::{IriQueryString, UriQueryString};
let iri = IriQueryString::try_from("alpha-is-\u{03B1}")?;
// Type annotation here is not necessary.
let uri: UriQueryString = iri.encode_into_uri();
assert_eq!(uri, "alpha-is-%CE%B1");
sourcepub fn try_encode_into_uri(self) -> Result<UriQueryString, TryReserveError>
pub fn try_encode_into_uri(self) -> Result<UriQueryString, TryReserveError>
Percent-encodes the IRI into a valid URI that identifies the equivalent resource.
If you want a new URI string rather than modifying the IRI
string, or if you need more precise control over memory
allocation and buffer handling, use
encode_to_uri
method.
Examples
#[cfg(feature = "alloc")] {
use iri_string::types::{IriQueryString, UriQueryString};
let iri = IriQueryString::try_from("alpha-is-\u{03B1}")?;
// Type annotation here is not necessary.
let uri: UriQueryString = iri.try_encode_into_uri()
.expect("failed to allocate memory");
assert_eq!(uri, "alpha-is-%CE%B1");
sourcepub fn try_into_uri(self) -> Result<UriQueryString, IriQueryString>
pub fn try_into_uri(self) -> Result<UriQueryString, IriQueryString>
Converts an IRI into a URI without modification, if possible.
Examples
use iri_string::types::{IriQueryString, UriQueryString};
let ascii_iri = IriQueryString::try_from("alpha-is-%CE%B1")?;
assert_eq!(
ascii_iri.try_into_uri().map(|uri| uri.to_string()),
Ok("alpha-is-%CE%B1".to_string())
);
let nonascii_iri = IriQueryString::try_from("alpha-is-\u{03B1}")?;
assert_eq!(
nonascii_iri.try_into_uri().map_err(|iri| iri.to_string()),
Err("alpha-is-\u{03B1}".to_string())
);
Methods from Deref<Target = RiQueryStr<S>>
sourcepub fn encode_to_uri(&self) -> MappedToUri<'_, Self>
pub fn encode_to_uri(&self) -> MappedToUri<'_, Self>
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::format::ToDedicatedString;
use iri_string::types::{IriQueryStr, UriQueryString};
let iri = IriQueryStr::new("alpha-is-\u{03B1}")?;
// Type annotation here is not necessary.
let uri: UriQueryString = iri.encode_to_uri().to_dedicated_string();
assert_eq!(uri, "alpha-is-%CE%B1");
sourcepub fn as_uri(&self) -> Option<&UriQueryStr>
pub fn as_uri(&self) -> Option<&UriQueryStr>
Converts an IRI into a URI without modification, if possible.
This is semantically equivalent to
UriQueryStr::new(self.as_str()).ok()
.
Examples
use iri_string::types::{IriQueryStr, UriQueryStr};
let ascii_iri = IriQueryStr::new("alpha-is-%CE%B1")?;
assert_eq!(
ascii_iri.as_uri().map(AsRef::as_ref),
Some("alpha-is-%CE%B1")
);
let nonascii_iri = IriQueryStr::new("alpha-is-\u{03B1}")?;
assert_eq!(nonascii_iri.as_uri(), None);
Trait Implementations
sourceimpl<S: Spec> AsRef<RiQueryStr<S>> for RiQueryString<S>
impl<S: Spec> AsRef<RiQueryStr<S>> for RiQueryString<S>
sourcefn as_ref(&self) -> &RiQueryStr<S>
fn as_ref(&self) -> &RiQueryStr<S>
Converts this type into a shared reference of the (usually inferred) input type.
sourceimpl<S: Spec> AsRef<str> for RiQueryString<S>
impl<S: Spec> AsRef<str> for RiQueryString<S>
sourceimpl<S: Spec> Borrow<RiQueryStr<S>> for RiQueryString<S>
impl<S: Spec> Borrow<RiQueryStr<S>> for RiQueryString<S>
sourcefn borrow(&self) -> &RiQueryStr<S>
fn borrow(&self) -> &RiQueryStr<S>
Immutably borrows from an owned value. Read more
sourceimpl<S: Spec> Borrow<str> for RiQueryString<S>
impl<S: Spec> Borrow<str> for RiQueryString<S>
sourceimpl<S: Spec> Clone for RiQueryString<S>
impl<S: Spec> Clone for RiQueryString<S>
sourceimpl<S: Spec> Debug for RiQueryString<S>
impl<S: Spec> Debug for RiQueryString<S>
sourceimpl<S: Spec> Deref for RiQueryString<S>
impl<S: Spec> Deref for RiQueryString<S>
type Target = RiQueryStr<S>
type Target = RiQueryStr<S>
The resulting type after dereferencing.
sourcefn deref(&self) -> &RiQueryStr<S>
fn deref(&self) -> &RiQueryStr<S>
Dereferences the value.
sourceimpl<'de, S: Spec> Deserialize<'de> for RiQueryString<S>
impl<'de, S: Spec> Deserialize<'de> for RiQueryString<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 RiQueryString<S>
impl<S: Spec> Display for RiQueryString<S>
sourceimpl<'a, S: Spec> From<&'a RiQueryString<S>> for MappedToUri<'a, RiQueryStr<S>>
impl<'a, S: Spec> From<&'a RiQueryString<S>> for MappedToUri<'a, RiQueryStr<S>>
sourcefn from(iri: &'a RiQueryString<S>) -> Self
fn from(iri: &'a RiQueryString<S>) -> Self
Converts to this type from the input type.
sourceimpl<S: Spec> From<&RiQueryStr<S>> for RiQueryString<S>
impl<S: Spec> From<&RiQueryStr<S>> for RiQueryString<S>
sourcefn from(s: &RiQueryStr<S>) -> Self
fn from(s: &RiQueryStr<S>) -> Self
Converts to this type from the input type.
sourceimpl<S: Spec> From<RiQueryString<S>> for Box<RiQueryStr<S>>
impl<S: Spec> From<RiQueryString<S>> for Box<RiQueryStr<S>>
sourcefn from(s: RiQueryString<S>) -> Box<RiQueryStr<S>>
fn from(s: RiQueryString<S>) -> Box<RiQueryStr<S>>
Converts to this type from the input type.
sourceimpl<'a, S: Spec> From<RiQueryString<S>> for Cow<'a, RiQueryStr<S>>
impl<'a, S: Spec> From<RiQueryString<S>> for Cow<'a, RiQueryStr<S>>
sourcefn from(s: RiQueryString<S>) -> Cow<'a, RiQueryStr<S>>
fn from(s: RiQueryString<S>) -> Cow<'a, RiQueryStr<S>>
Converts to this type from the input type.
sourceimpl<S: Spec> From<RiQueryString<S>> for String
impl<S: Spec> From<RiQueryString<S>> for String
sourcefn from(s: RiQueryString<S>) -> Self
fn from(s: RiQueryString<S>) -> Self
Converts to this type from the input type.
sourceimpl From<RiQueryString<UriSpec>> for IriQueryString
impl From<RiQueryString<UriSpec>> for IriQueryString
sourcefn from(uri: UriQueryString) -> Self
fn from(uri: UriQueryString) -> Self
Converts to this type from the input type.
sourceimpl<S: Spec> FromStr for RiQueryString<S>
impl<S: Spec> FromStr for RiQueryString<S>
sourceimpl<S: Spec> Hash for RiQueryString<S>
impl<S: Spec> Hash for RiQueryString<S>
sourceimpl<S: Spec> Ord for RiQueryString<S>
impl<S: Spec> Ord for RiQueryString<S>
sourceimpl<S: Spec, T: Spec> PartialEq<&RiQueryStr<S>> for RiQueryString<T>
impl<S: Spec, T: Spec> PartialEq<&RiQueryStr<S>> for RiQueryString<T>
sourceimpl<S: Spec> PartialEq<&str> for RiQueryString<S>
impl<S: Spec> PartialEq<&str> for RiQueryString<S>
sourceimpl<S: Spec, T: Spec> PartialEq<Cow<'_, RiQueryStr<S>>> for RiQueryString<T>
impl<S: Spec, T: Spec> PartialEq<Cow<'_, RiQueryStr<S>>> for RiQueryString<T>
sourceimpl<S: Spec, T: Spec> PartialEq<RiQueryStr<S>> for RiQueryString<T>
impl<S: Spec, T: Spec> PartialEq<RiQueryStr<S>> for RiQueryString<T>
sourceimpl<S: Spec> PartialEq<RiQueryString<S>> for &str
impl<S: Spec> PartialEq<RiQueryString<S>> for &str
sourceimpl<S: Spec> PartialEq<RiQueryString<S>> for String
impl<S: Spec> PartialEq<RiQueryString<S>> for String
sourceimpl<S: Spec> PartialEq<RiQueryString<S>> for str
impl<S: Spec> PartialEq<RiQueryString<S>> for str
sourceimpl<S: Spec, T: Spec> PartialEq<RiQueryString<T>> for &RiQueryStr<S>
impl<S: Spec, T: Spec> PartialEq<RiQueryString<T>> for &RiQueryStr<S>
sourceimpl<S: Spec, T: Spec> PartialEq<RiQueryString<T>> for Cow<'_, RiQueryStr<S>>
impl<S: Spec, T: Spec> PartialEq<RiQueryString<T>> for Cow<'_, RiQueryStr<S>>
sourceimpl<S: Spec, T: Spec> PartialEq<RiQueryString<T>> for RiQueryStr<S>
impl<S: Spec, T: Spec> PartialEq<RiQueryString<T>> for RiQueryStr<S>
sourceimpl<S: Spec, T: Spec> PartialEq<RiQueryString<T>> for RiQueryString<S>
impl<S: Spec, T: Spec> PartialEq<RiQueryString<T>> for RiQueryString<S>
sourceimpl<S: Spec> PartialEq<String> for RiQueryString<S>
impl<S: Spec> PartialEq<String> for RiQueryString<S>
sourceimpl<S: Spec> PartialEq<str> for RiQueryString<S>
impl<S: Spec> PartialEq<str> for RiQueryString<S>
sourceimpl<S: Spec, T: Spec> PartialOrd<&RiQueryStr<S>> for RiQueryString<T>
impl<S: Spec, T: Spec> PartialOrd<&RiQueryStr<S>> for RiQueryString<T>
sourcefn partial_cmp(&self, o: &&RiQueryStr<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &&RiQueryStr<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 RiQueryString<S>
impl<S: Spec> PartialOrd<&str> for RiQueryString<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<'_, RiQueryStr<S>>> for RiQueryString<T>
impl<S: Spec, T: Spec> PartialOrd<Cow<'_, RiQueryStr<S>>> for RiQueryString<T>
sourcefn partial_cmp(&self, o: &Cow<'_, RiQueryStr<S>>) -> Option<Ordering>
fn partial_cmp(&self, o: &Cow<'_, RiQueryStr<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<Cow<'_, str>> for RiQueryString<S>
impl<S: Spec> PartialOrd<Cow<'_, str>> for RiQueryString<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, T: Spec> PartialOrd<RiQueryStr<S>> for RiQueryString<T>
impl<S: Spec, T: Spec> PartialOrd<RiQueryStr<S>> for RiQueryString<T>
sourcefn partial_cmp(&self, o: &RiQueryStr<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiQueryStr<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<RiQueryString<S>> for &str
impl<S: Spec> PartialOrd<RiQueryString<S>> for &str
sourcefn partial_cmp(&self, o: &RiQueryString<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiQueryString<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<RiQueryString<S>> for Cow<'_, str>
impl<S: Spec> PartialOrd<RiQueryString<S>> for Cow<'_, str>
sourcefn partial_cmp(&self, o: &RiQueryString<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiQueryString<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<RiQueryString<S>> for String
impl<S: Spec> PartialOrd<RiQueryString<S>> for String
sourcefn partial_cmp(&self, o: &RiQueryString<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiQueryString<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<RiQueryString<S>> for str
impl<S: Spec> PartialOrd<RiQueryString<S>> for str
sourcefn partial_cmp(&self, o: &RiQueryString<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiQueryString<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<RiQueryString<T>> for &RiQueryStr<S>
impl<S: Spec, T: Spec> PartialOrd<RiQueryString<T>> for &RiQueryStr<S>
sourcefn partial_cmp(&self, o: &RiQueryString<T>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiQueryString<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<RiQueryString<T>> for Cow<'_, RiQueryStr<S>>
impl<S: Spec, T: Spec> PartialOrd<RiQueryString<T>> for Cow<'_, RiQueryStr<S>>
sourcefn partial_cmp(&self, o: &RiQueryString<T>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiQueryString<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<RiQueryString<T>> for RiQueryStr<S>
impl<S: Spec, T: Spec> PartialOrd<RiQueryString<T>> for RiQueryStr<S>
sourcefn partial_cmp(&self, o: &RiQueryString<T>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiQueryString<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<RiQueryString<T>> for RiQueryString<S>
impl<S: Spec, T: Spec> PartialOrd<RiQueryString<T>> for RiQueryString<S>
sourcefn partial_cmp(&self, other: &RiQueryString<T>) -> Option<Ordering>
fn partial_cmp(&self, other: &RiQueryString<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<String> for RiQueryString<S>
impl<S: Spec> PartialOrd<String> for RiQueryString<S>
sourcefn partial_cmp(&self, o: &String) -> Option<Ordering>
fn partial_cmp(&self, o: &String) -> 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 RiQueryString<S>
impl<S: Spec> PartialOrd<str> for RiQueryString<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 RiQueryString<S> where
S: Spec,
impl<S> Serialize for RiQueryString<S> where
S: Spec,
sourceimpl<S: Spec> TryFrom<&[u8]> for RiQueryString<S>
impl<S: Spec> TryFrom<&[u8]> for RiQueryString<S>
sourceimpl<S: Spec> TryFrom<&str> for RiQueryString<S>
impl<S: Spec> TryFrom<&str> for RiQueryString<S>
sourceimpl<S: Spec> TryFrom<String> for RiQueryString<S>
impl<S: Spec> TryFrom<String> for RiQueryString<S>
impl<S: Spec> Eq for RiQueryString<S>
Auto Trait Implementations
impl<S> RefUnwindSafe for RiQueryString<S>
impl<S> Send for RiQueryString<S>
impl<S> Sync for RiQueryString<S>
impl<S> Unpin for RiQueryString<S>
impl<S> UnwindSafe for RiQueryString<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
sourceimpl<T> ToStringFallible for T where
T: Display,
impl<T> ToStringFallible for T where
T: Display,
sourcefn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.