Struct iri_string::types::RiQueryStr
source · [−]#[repr(transparent)]pub struct RiQueryStr<S> { /* private fields */ }
Expand description
A borrowed slice of an IRI query (i.e. after the first ?
and before the first #
).
This corresponds to iquery
rule in RFC 3987 (and query
rule in RFC 3986).
The rule for ifragment
is *( ipchar / iprivate / "/" / "?" )
.
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());
use iri_string::types::IriQueryStr;
assert!(IriQueryStr::new("").is_ok());
assert!(IriQueryStr::new("foo").is_ok());
assert!(IriQueryStr::new("foo/bar").is_ok());
assert!(IriQueryStr::new("/foo/bar").is_ok());
assert!(IriQueryStr::new("//foo/bar").is_ok());
assert!(IriQueryStr::new("https://user:pass@example.com:8080").is_ok());
assert!(IriQueryStr::new("https://example.com/").is_ok());
// Question sign `?` can appear in an IRI query.
assert!(IriQueryStr::new("query?again").is_ok());
Some characters and sequences cannot used in a query.
use iri_string::types::IriQueryStr;
// `<` and `>` cannot directly appear in an IRI reference.
assert!(IriQueryStr::new("<not allowed>").is_err());
// Broken percent encoding cannot appear in an IRI reference.
assert!(IriQueryStr::new("%").is_err());
assert!(IriQueryStr::new("%GG").is_err());
// Hash sign `#` cannot appear in an IRI query.
assert!(IriQueryStr::new("#hash").is_err());
Implementations
sourceimpl<S: Spec> RiQueryStr<S>
impl<S: Spec> RiQueryStr<S>
sourceimpl<S: Spec> RiQueryStr<S>
impl<S: Spec> RiQueryStr<S>
sourcepub fn from_prefixed(s: &str) -> Result<&Self, Error>
pub fn from_prefixed(s: &str) -> Result<&Self, Error>
Creates a new &RiQueryStr
from the query part prefixed by ?
.
Examples
assert!(IriQueryStr::from_prefixed("?").is_ok());
assert!(IriQueryStr::from_prefixed("?foo").is_ok());
assert!(IriQueryStr::from_prefixed("?foo/bar").is_ok());
assert!(IriQueryStr::from_prefixed("?/foo/bar").is_ok());
assert!(IriQueryStr::from_prefixed("?//foo/bar").is_ok());
assert!(IriQueryStr::from_prefixed("?https://user:pass@example.com:8080").is_ok());
assert!(IriQueryStr::from_prefixed("?https://example.com/").is_ok());
// Question sign `?` can appear in an IRI query.
assert!(IriQueryStr::from_prefixed("?query?again").is_ok());
// `<` and `>` cannot directly appear in an IRI.
assert!(IriQueryStr::from_prefixed("?<not allowed>").is_err());
// Broken percent encoding cannot appear in an IRI.
assert!(IriQueryStr::new("?%").is_err());
assert!(IriQueryStr::new("?%GG").is_err());
// `?` prefix is expected.
assert!(IriQueryStr::from_prefixed("").is_err());
assert!(IriQueryStr::from_prefixed("foo").is_err());
// Hash sign `#` cannot appear in an IRI query.
assert!(IriQueryStr::from_prefixed("?#hash").is_err());
sourceimpl RiQueryStr<IriSpec>
impl RiQueryStr<IriSpec>
Conversion from an IRI into a URI.
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 AsRef<RiQueryStr<IriSpec>> for UriQueryStr
impl AsRef<RiQueryStr<IriSpec>> for UriQueryStr
sourcefn as_ref(&self) -> &IriQueryStr
fn as_ref(&self) -> &IriQueryStr
Converts this type into a shared reference of the (usually inferred) input type.
sourceimpl AsRef<RiQueryStr<IriSpec>> for UriQueryString
impl AsRef<RiQueryStr<IriSpec>> for UriQueryString
sourcefn as_ref(&self) -> &IriQueryStr
fn as_ref(&self) -> &IriQueryStr
Converts this type into a shared reference of the (usually inferred) input type.
sourceimpl<S: Spec> AsRef<RiQueryStr<S>> for RiQueryStr<S>
impl<S: Spec> AsRef<RiQueryStr<S>> for RiQueryStr<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<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 RiQueryStr<S>
impl<S: Spec> AsRef<str> for RiQueryStr<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> Debug for RiQueryStr<S>
impl<S: Spec> Debug for RiQueryStr<S>
sourceimpl<'de: 'a, 'a, S: 'de + Spec> Deserialize<'de> for &'a RiQueryStr<S>
impl<'de: 'a, 'a, S: 'de + Spec> Deserialize<'de> for &'a RiQueryStr<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 RiQueryStr<S>
impl<S: Spec> Display for RiQueryStr<S>
sourceimpl<'a, S: Spec> From<&'a RiQueryStr<S>> for &'a str
impl<'a, S: Spec> From<&'a RiQueryStr<S>> for &'a str
sourcefn from(s: &'a RiQueryStr<S>) -> &'a str
fn from(s: &'a RiQueryStr<S>) -> &'a str
Converts to this type from the input type.
sourceimpl<'a, S: Spec> From<&'a RiQueryStr<S>> for Cow<'a, RiQueryStr<S>>
impl<'a, S: Spec> From<&'a RiQueryStr<S>> for Cow<'a, RiQueryStr<S>>
sourcefn from(s: &'a RiQueryStr<S>) -> Self
fn from(s: &'a RiQueryStr<S>) -> Self
Converts to this type from the input type.
sourceimpl<'a, S: Spec> From<&'a RiQueryStr<S>> for MappedToUri<'a, RiQueryStr<S>>
impl<'a, S: Spec> From<&'a RiQueryStr<S>> for MappedToUri<'a, RiQueryStr<S>>
sourcefn from(iri: &'a RiQueryStr<S>) -> Self
fn from(iri: &'a RiQueryStr<S>) -> Self
Converts to this type from the input type.
sourceimpl<S: Spec> From<&RiQueryStr<S>> for Arc<RiQueryStr<S>>
impl<S: Spec> From<&RiQueryStr<S>> for Arc<RiQueryStr<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<&RiQueryStr<S>> for Box<RiQueryStr<S>>
impl<S: Spec> From<&RiQueryStr<S>> for Box<RiQueryStr<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<&RiQueryStr<S>> for Rc<RiQueryStr<S>>
impl<S: Spec> From<&RiQueryStr<S>> for Rc<RiQueryStr<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<&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<S: Spec> Hash for RiQueryStr<S>
impl<S: Spec> Hash for RiQueryStr<S>
sourceimpl<S: Spec> Ord for RiQueryStr<S>
impl<S: Spec> Ord for RiQueryStr<S>
sourceimpl<S: Spec, T: Spec> PartialEq<&RiQueryStr<S>> for Cow<'_, RiQueryStr<T>>
impl<S: Spec, T: Spec> PartialEq<&RiQueryStr<S>> for Cow<'_, RiQueryStr<T>>
sourceimpl<S: Spec, T: Spec> PartialEq<&RiQueryStr<S>> for RiQueryStr<T>
impl<S: Spec, T: Spec> PartialEq<&RiQueryStr<S>> for RiQueryStr<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<&RiQueryStr<S>> for str
impl<S: Spec> PartialEq<&RiQueryStr<S>> for str
sourceimpl<S: Spec> PartialEq<&str> for RiQueryStr<S>
impl<S: Spec> PartialEq<&str> for RiQueryStr<S>
sourceimpl<S: Spec, T: Spec> PartialEq<Cow<'_, RiQueryStr<T>>> for &RiQueryStr<S>
impl<S: Spec, T: Spec> PartialEq<Cow<'_, RiQueryStr<T>>> for &RiQueryStr<S>
sourceimpl<S: Spec> PartialEq<RiQueryStr<S>> for &str
impl<S: Spec> PartialEq<RiQueryStr<S>> for &str
sourceimpl<S: Spec> PartialEq<RiQueryStr<S>> for RiQueryStr<S>
impl<S: Spec> PartialEq<RiQueryStr<S>> for RiQueryStr<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<RiQueryStr<S>> for str
impl<S: Spec> PartialEq<RiQueryStr<S>> for str
sourceimpl<S: Spec, T: Spec> PartialEq<RiQueryStr<T>> for &RiQueryStr<S>
impl<S: Spec, T: Spec> PartialEq<RiQueryStr<T>> for &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 RiQueryStr<S>
impl<S: Spec, T: Spec> PartialEq<RiQueryString<T>> for RiQueryStr<S>
sourceimpl<S: Spec> PartialEq<str> for &RiQueryStr<S>
impl<S: Spec> PartialEq<str> for &RiQueryStr<S>
sourceimpl<S: Spec> PartialEq<str> for RiQueryStr<S>
impl<S: Spec> PartialEq<str> for RiQueryStr<S>
sourceimpl<S: Spec, T: Spec> PartialOrd<&RiQueryStr<S>> for Cow<'_, RiQueryStr<T>>
impl<S: Spec, T: Spec> PartialOrd<&RiQueryStr<S>> for Cow<'_, RiQueryStr<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<&RiQueryStr<S>> for Cow<'_, str>
impl<S: Spec> PartialOrd<&RiQueryStr<S>> for Cow<'_, str>
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, T: Spec> PartialOrd<&RiQueryStr<S>> for RiQueryStr<T>
impl<S: Spec, T: Spec> PartialOrd<&RiQueryStr<S>> for RiQueryStr<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, 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<&RiQueryStr<S>> for str
impl<S: Spec> PartialOrd<&RiQueryStr<S>> for str
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 RiQueryStr<S>
impl<S: Spec> PartialOrd<&str> for RiQueryStr<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<T>>> for &RiQueryStr<S>
impl<S: Spec, T: Spec> PartialOrd<Cow<'_, RiQueryStr<T>>> for &RiQueryStr<S>
sourcefn partial_cmp(&self, o: &Cow<'_, RiQueryStr<T>>) -> Option<Ordering>
fn partial_cmp(&self, o: &Cow<'_, RiQueryStr<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 &RiQueryStr<S>
impl<S: Spec> PartialOrd<Cow<'_, str>> for &RiQueryStr<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 RiQueryStr<S>
impl<S: Spec> PartialOrd<Cow<'_, str>> for RiQueryStr<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<RiQueryStr<S>> for &str
impl<S: Spec> PartialOrd<RiQueryStr<S>> for &str
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<RiQueryStr<S>> for Cow<'_, str>
impl<S: Spec> PartialOrd<RiQueryStr<S>> for Cow<'_, str>
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<RiQueryStr<S>> for RiQueryStr<S>
impl<S: Spec> PartialOrd<RiQueryStr<S>> for RiQueryStr<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, 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<RiQueryStr<S>> for str
impl<S: Spec> PartialOrd<RiQueryStr<S>> for str
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, T: Spec> PartialOrd<RiQueryStr<T>> for &RiQueryStr<S>
impl<S: Spec, T: Spec> PartialOrd<RiQueryStr<T>> for &RiQueryStr<S>
sourcefn partial_cmp(&self, o: &RiQueryStr<T>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiQueryStr<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 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> PartialOrd<str> for &RiQueryStr<S>
impl<S: Spec> PartialOrd<str> for &RiQueryStr<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 RiQueryStr<S>
impl<S: Spec> PartialOrd<str> for RiQueryStr<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 RiQueryStr<S> where
S: Spec,
impl<S> Serialize for RiQueryStr<S> where
S: Spec,
sourceimpl<S: Spec> ToOwned for RiQueryStr<S>
impl<S: Spec> ToOwned for RiQueryStr<S>
type Owned = RiQueryString<S>
type Owned = RiQueryString<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
1.63.0 · sourcefn clone_into(&self, target: &mut Self::Owned)
fn clone_into(&self, target: &mut Self::Owned)
Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<'a, S: Spec> TryFrom<&'a [u8]> for &'a RiQueryStr<S>
impl<'a, S: Spec> TryFrom<&'a [u8]> for &'a RiQueryStr<S>
sourceimpl<'a, S: Spec> TryFrom<&'a str> for &'a RiQueryStr<S>
impl<'a, S: Spec> TryFrom<&'a str> for &'a RiQueryStr<S>
impl<S: Spec> Eq for RiQueryStr<S>
Auto Trait Implementations
impl<S> RefUnwindSafe for RiQueryStr<S>
impl<S> Send for RiQueryStr<S>
impl<S> !Sized for RiQueryStr<S>
impl<S> Sync for RiQueryStr<S>
impl<S> Unpin for RiQueryStr<S>
impl<S> UnwindSafe for RiQueryStr<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.