pub struct MappedToUri<'a, Src: ?Sized>(_);
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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Available on crate feature alloc only.

Conversion target type.

Available on crate feature alloc only.

Converts the value to the allocated string.

Available on crate feature alloc only.

Converts the value to the allocated string. Read more

Available on crate feature alloc only.

Conversion target type.

Available on crate feature alloc only.

Converts the value to the allocated string.

Available on crate feature alloc only.

Converts the value to the allocated string. Read more

Available on crate feature alloc only.

Conversion target type.

Available on crate feature alloc only.

Converts the value to the allocated string.

Available on crate feature alloc only.

Converts the value to the allocated string. Read more

Available on crate feature alloc only.

Conversion target type.

Available on crate feature alloc only.

Converts the value to the allocated string.

Available on crate feature alloc only.

Converts the value to the allocated string. Read more

Available on crate feature alloc only.

Conversion target type.

Available on crate feature alloc only.

Converts the value to the allocated string.

Available on crate feature alloc only.

Converts the value to the allocated string. Read more

Available on crate feature alloc only.

Conversion target type.

Available on crate feature alloc only.

Converts the value to the allocated string.

Available on crate feature alloc only.

Converts the value to the allocated string. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.

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

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

Converts the given value to a String. Read more

Available on crate feature alloc only.

ToString::to_string, but without panic on OOM.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.