Struct iri_string::convert::MappedToUri

source ·
pub struct MappedToUri<'a, Src: ?Sized>(/* private fields */);
Expand description

A resource identifier mapped to a URI of some kind.

Supported Src type are:

§Examples

use iri_string::convert::MappedToUri;
use iri_string::types::{IriStr, UriStr};

let src = IriStr::new("http://example.com/?alpha=\u{03B1}")?;
// The type is `MappedToUri<IriStr>`, but you usually don't need to specify.
let mapped = MappedToUri::from(src).to_string();
assert_eq!(mapped, "http://example.com/?alpha=%CE%B1");

Trait Implementations§

source§

impl<'a, Src: Clone + ?Sized> Clone for MappedToUri<'a, Src>

source§

fn clone(&self) -> MappedToUri<'a, Src>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a, Src: Debug + ?Sized> Debug for MappedToUri<'a, Src>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<S: Spec> Display for MappedToUri<'_, RiAbsoluteStr<S>>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<S: Spec> Display for MappedToUri<'_, RiFragmentStr<S>>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<S: Spec> Display for MappedToUri<'_, RiQueryStr<S>>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<S: Spec> Display for MappedToUri<'_, RiReferenceStr<S>>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<S: Spec> Display for MappedToUri<'_, RiRelativeStr<S>>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<S: Spec> Display for MappedToUri<'_, RiStr<S>>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a, S: Spec> From<&'a RiAbsoluteStr<S>> for MappedToUri<'a, RiAbsoluteStr<S>>

source§

fn from(iri: &'a RiAbsoluteStr<S>) -> Self

Converts to this type from the input type.
source§

impl<'a, S: Spec> From<&'a RiAbsoluteString<S>> for MappedToUri<'a, RiAbsoluteStr<S>>

source§

fn from(iri: &'a RiAbsoluteString<S>) -> Self

Converts to this type from the input type.
source§

impl<'a, S: Spec> From<&'a RiFragmentStr<S>> for MappedToUri<'a, RiFragmentStr<S>>

source§

fn from(iri: &'a RiFragmentStr<S>) -> Self

Converts to this type from the input type.
source§

impl<'a, S: Spec> From<&'a RiFragmentString<S>> for MappedToUri<'a, RiFragmentStr<S>>

source§

fn from(iri: &'a RiFragmentString<S>) -> Self

Converts to this type from the input type.
source§

impl<'a, S: Spec> From<&'a RiQueryStr<S>> for MappedToUri<'a, RiQueryStr<S>>

source§

fn from(iri: &'a RiQueryStr<S>) -> Self

Converts to this type from the input type.
source§

impl<'a, S: Spec> From<&'a RiQueryString<S>> for MappedToUri<'a, RiQueryStr<S>>

source§

fn from(iri: &'a RiQueryString<S>) -> Self

Converts to this type from the input type.
source§

impl<'a, S: Spec> From<&'a RiReferenceStr<S>> for MappedToUri<'a, RiReferenceStr<S>>

source§

fn from(iri: &'a RiReferenceStr<S>) -> Self

Converts to this type from the input type.
source§

impl<'a, S: Spec> From<&'a RiReferenceString<S>> for MappedToUri<'a, RiReferenceStr<S>>

source§

fn from(iri: &'a RiReferenceString<S>) -> Self

Converts to this type from the input type.
source§

impl<'a, S: Spec> From<&'a RiRelativeStr<S>> for MappedToUri<'a, RiRelativeStr<S>>

source§

fn from(iri: &'a RiRelativeStr<S>) -> Self

Converts to this type from the input type.
source§

impl<'a, S: Spec> From<&'a RiRelativeString<S>> for MappedToUri<'a, RiRelativeStr<S>>

source§

fn from(iri: &'a RiRelativeString<S>) -> Self

Converts to this type from the input type.
source§

impl<'a, S: Spec> From<&'a RiStr<S>> for MappedToUri<'a, RiStr<S>>

source§

fn from(iri: &'a RiStr<S>) -> Self

Converts to this type from the input type.
source§

impl<'a, S: Spec> From<&'a RiString<S>> for MappedToUri<'a, RiStr<S>>

source§

fn from(iri: &'a RiString<S>) -> Self

Converts to this type from the input type.
source§

impl<S: Spec> ToDedicatedString for MappedToUri<'_, RiAbsoluteStr<S>>

§

type Target = RiAbsoluteString<UriSpec>

Available on crate feature alloc only.
Conversion target type.
source§

fn try_to_dedicated_string(&self) -> Result<Self::Target, TryReserveError>

Available on crate feature alloc only.
Converts the value to the allocated string.
source§

fn to_dedicated_string(&self) -> Self::Target

Available on crate feature alloc only.
Converts the value to the allocated string. Read more
source§

impl<S: Spec> ToDedicatedString for MappedToUri<'_, RiFragmentStr<S>>

§

type Target = RiFragmentString<UriSpec>

Available on crate feature alloc only.
Conversion target type.
source§

fn try_to_dedicated_string(&self) -> Result<Self::Target, TryReserveError>

Available on crate feature alloc only.
Converts the value to the allocated string.
source§

fn to_dedicated_string(&self) -> Self::Target

Available on crate feature alloc only.
Converts the value to the allocated string. Read more
source§

impl<S: Spec> ToDedicatedString for MappedToUri<'_, RiQueryStr<S>>

§

type Target = RiQueryString<UriSpec>

Available on crate feature alloc only.
Conversion target type.
source§

fn try_to_dedicated_string(&self) -> Result<Self::Target, TryReserveError>

Available on crate feature alloc only.
Converts the value to the allocated string.
source§

fn to_dedicated_string(&self) -> Self::Target

Available on crate feature alloc only.
Converts the value to the allocated string. Read more
source§

impl<S: Spec> ToDedicatedString for MappedToUri<'_, RiReferenceStr<S>>

§

type Target = RiReferenceString<UriSpec>

Available on crate feature alloc only.
Conversion target type.
source§

fn try_to_dedicated_string(&self) -> Result<Self::Target, TryReserveError>

Available on crate feature alloc only.
Converts the value to the allocated string.
source§

fn to_dedicated_string(&self) -> Self::Target

Available on crate feature alloc only.
Converts the value to the allocated string. Read more
source§

impl<S: Spec> ToDedicatedString for MappedToUri<'_, RiRelativeStr<S>>

§

type Target = RiRelativeString<UriSpec>

Available on crate feature alloc only.
Conversion target type.
source§

fn try_to_dedicated_string(&self) -> Result<Self::Target, TryReserveError>

Available on crate feature alloc only.
Converts the value to the allocated string.
source§

fn to_dedicated_string(&self) -> Self::Target

Available on crate feature alloc only.
Converts the value to the allocated string. Read more
source§

impl<S: Spec> ToDedicatedString for MappedToUri<'_, RiStr<S>>

§

type Target = RiString<UriSpec>

Available on crate feature alloc only.
Conversion target type.
source§

fn try_to_dedicated_string(&self) -> Result<Self::Target, TryReserveError>

Available on crate feature alloc only.
Converts the value to the allocated string.
source§

fn to_dedicated_string(&self) -> Self::Target

Available on crate feature alloc only.
Converts the value to the allocated string. Read more
source§

impl<'a, Src: Copy + ?Sized> Copy for MappedToUri<'a, Src>

Auto Trait Implementations§

§

impl<'a, Src> Freeze for MappedToUri<'a, Src>
where Src: ?Sized,

§

impl<'a, Src> RefUnwindSafe for MappedToUri<'a, Src>
where Src: RefUnwindSafe + ?Sized,

§

impl<'a, Src> Send for MappedToUri<'a, Src>
where Src: Sync + ?Sized,

§

impl<'a, Src> Sync for MappedToUri<'a, Src>
where Src: Sync + ?Sized,

§

impl<'a, Src> Unpin for MappedToUri<'a, Src>
where Src: ?Sized,

§

impl<'a, Src> UnwindSafe for MappedToUri<'a, Src>
where Src: RefUnwindSafe + ?Sized,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T> ToStringFallible for T
where T: Display,

source§

fn try_to_string(&self) -> Result<String, TryReserveError>

Available on crate feature alloc only.

ToString::to_string, but without panic on OOM.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.