iri_string::build

Struct Built

source
pub struct Built<'a, T: ?Sized> { /* private fields */ }
Expand description

Display-able IRI build result.

The value of this type can generate an IRI using From/Into traits or Display trait.

§Security consideration

This can be stringified or directly printed by std::fmt::Display, but note that this Display does not hide the password part. Be careful not to print the value using Display for Built<_> in public context.

Implementations§

source§

impl<S: Spec> Built<'_, RiReferenceStr<S>>

source

pub fn ensure_rfc3986_normalizable(&self) -> Result<(), Error>

Returns Ok(()) if the IRI is normalizable by the RFC 3986 algorithm.

source§

impl<S: Spec> Built<'_, RiStr<S>>

source

pub fn ensure_rfc3986_normalizable(&self) -> Result<(), Error>

Returns Ok(()) if the IRI is normalizable by the RFC 3986 algorithm.

source§

impl<S: Spec> Built<'_, RiAbsoluteStr<S>>

source

pub fn ensure_rfc3986_normalizable(&self) -> Result<(), Error>

Returns Ok(()) if the IRI is normalizable by the RFC 3986 algorithm.

source§

impl<S: Spec> Built<'_, RiRelativeStr<S>>

source

pub fn ensure_rfc3986_normalizable(&self) -> Result<(), Error>

Returns Ok(()) if the IRI is normalizable by the RFC 3986 algorithm.

Trait Implementations§

source§

impl<T: ?Sized> Clone for Built<'_, T>

source§

fn clone(&self) -> Self

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, T: Debug + ?Sized> Debug for Built<'a, T>

source§

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

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

impl<S: Spec> Display for Built<'_, 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 Built<'_, 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 Built<'_, 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 Built<'_, RiStr<S>>

source§

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

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

impl<S: Spec> From<&Built<'_, RiAbsoluteStr<S>>> for RiAbsoluteString<S>

Available on crate feature alloc only.
source§

fn from(builder: &Built<'_, RiAbsoluteStr<S>>) -> Self

Converts to this type from the input type.
source§

impl<S: Spec> From<&Built<'_, RiReferenceStr<S>>> for RiReferenceString<S>

Available on crate feature alloc only.
source§

fn from(builder: &Built<'_, RiReferenceStr<S>>) -> Self

Converts to this type from the input type.
source§

impl<S: Spec> From<&Built<'_, RiRelativeStr<S>>> for RiRelativeString<S>

Available on crate feature alloc only.
source§

fn from(builder: &Built<'_, RiRelativeStr<S>>) -> Self

Converts to this type from the input type.
source§

impl<S: Spec> From<&Built<'_, RiStr<S>>> for RiString<S>

Available on crate feature alloc only.
source§

fn from(builder: &Built<'_, RiStr<S>>) -> Self

Converts to this type from the input type.
source§

impl<S: Spec> From<Built<'_, RiAbsoluteStr<S>>> for RiAbsoluteString<S>

Available on crate feature alloc only.
source§

fn from(builder: Built<'_, RiAbsoluteStr<S>>) -> Self

Converts to this type from the input type.
source§

impl<S: Spec> From<Built<'_, RiReferenceStr<S>>> for RiReferenceString<S>

Available on crate feature alloc only.
source§

fn from(builder: Built<'_, RiReferenceStr<S>>) -> Self

Converts to this type from the input type.
source§

impl<S: Spec> From<Built<'_, RiRelativeStr<S>>> for RiRelativeString<S>

Available on crate feature alloc only.
source§

fn from(builder: Built<'_, RiRelativeStr<S>>) -> Self

Converts to this type from the input type.
source§

impl<S: Spec> From<Built<'_, RiStr<S>>> for RiString<S>

Available on crate feature alloc only.
source§

fn from(builder: Built<'_, RiStr<S>>) -> Self

Converts to this type from the input type.
source§

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

Available on crate feature alloc only.
source§

type Target = RiAbsoluteString<S>

Conversion target type.
source§

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

Converts the value to the allocated string.
source§

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

Converts the value to the allocated string. Read more
source§

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

Available on crate feature alloc only.
source§

type Target = RiReferenceString<S>

Conversion target type.
source§

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

Converts the value to the allocated string.
source§

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

Converts the value to the allocated string. Read more
source§

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

Available on crate feature alloc only.
source§

type Target = RiRelativeString<S>

Conversion target type.
source§

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

Converts the value to the allocated string.
source§

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

Converts the value to the allocated string. Read more
source§

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

Available on crate feature alloc only.
source§

type Target = RiString<S>

Conversion target type.
source§

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

Converts the value to the allocated string.
source§

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

Converts the value to the allocated string. Read more

Auto Trait Implementations§

§

impl<'a, T> Freeze for Built<'a, T>
where T: ?Sized,

§

impl<'a, T> RefUnwindSafe for Built<'a, T>
where T: ?Sized,

§

impl<'a, T> Send for Built<'a, T>
where T: ?Sized,

§

impl<'a, T> Sync for Built<'a, T>
where T: ?Sized,

§

impl<'a, T> Unpin for Built<'a, T>
where T: ?Sized,

§

impl<'a, T> UnwindSafe for Built<'a, T>
where T: ?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> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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,

source§

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>,

source§

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>,

source§

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.