[][src]Struct mail::IRI

pub struct IRI { /* fields omitted */ }

A minimal IRI (International Resource Identifier) implementation which just parses the scheme but no scheme specific part (and neither fragments wrt. those definitions in which fragments are not scheme specific parts).

This implementation does not perform any form of normalization or other IRI specific aspects, it's basically just a String split into two parts.

Additionally this implementations requires all URI to be valid utf8.

Example

let uri = IRI::new("file:/random/logo.png").unwrap();
assert_eq!(uri.scheme(), "file");
assert_eq!(uri.tail(), "/random/logo.png");

Implementations

impl IRI[src]

pub fn from_parts(scheme: &str, tail: &str) -> Result<IRI, InvalidIRIScheme>[src]

Create a new IRI from a scheme part and a tail part.

This will convert the scheme part into lower case before using it.

pub fn new<I>(iri: I) -> Result<IRI, InvalidIRIScheme> where
    I: Into<String>, 
[src]

crates a new a IRI

  1. this determines the first occurrence of : to split the input into scheme and tail
  2. it validates that the scheme name is RFC 3986 compatible, i.e. is ascii, starting with a letter followed by alpha numeric characters (or "+","-",".").
  3. converts the scheme part to lower case

pub fn with_tail(&self, new_tail: &str) -> IRI[src]

Creates a new IRI with the same schema but a different tail.

pub fn scheme(&self) -> &str[src]

The scheme part of the uri excluding the : seperator.

The scheme is guaranteed to be lower case.

Example

let uri = IRI::new("file:///opt/share/logo.png").unwrap();
assert_eq!(uri.scheme(), "file");

pub fn tail(&self) -> &str[src]

the scheme specific part of the uri

Example

let uri = IRI::new("file:///opt/share/logo.png").unwrap();
assert_eq!(uri.scheme(), "file");

pub fn as_str(&self) -> &str[src]

returns the underlying string representation

Note that it does not implement Display even through it implements as_str and Into<String> as displaying a IRI is more complex then just displaying a string (mainly due to bidirectional IRI's).

Trait Implementations

impl Clone for IRI[src]

impl Debug for IRI[src]

impl<'de> Deserialize<'de> for IRI[src]

impl Eq for IRI[src]

impl FromStr for IRI[src]

type Err = InvalidIRIScheme

The associated error which can be returned from parsing.

impl Hash for IRI[src]

impl Into<String> for IRI[src]

impl Ord for IRI[src]

impl PartialEq<IRI> for IRI[src]

impl PartialOrd<IRI> for IRI[src]

impl PathRebaseable for IRI[src]

impl Serialize for IRI[src]

impl StructuralEq for IRI[src]

impl StructuralPartialEq for IRI[src]

Auto Trait Implementations

impl RefUnwindSafe for IRI

impl Send for IRI

impl Sync for IRI

impl Unpin for IRI

impl UnwindSafe for IRI

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> From<T> for T[src]

impl<T> HeaderTryFrom<T> for T[src]

impl<F, T> HeaderTryInto<T> for F where
    T: HeaderTryFrom<F>, 
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.