Enum rhymuri::Context[][src]

pub enum Context {
    Fragment,
    Host,
    Ipv4Address,
    Ipv6Address,
    IpvFuture,
    Path,
    Query,
    Scheme,
    Userinfo,
}

This enumerates the various places where an error might occur parsing a URI.

Variants

Fragment

This is the fragment of the URI, such as #baz in http://www.example.com/foo?bar#baz.

Host

This is the host name of the URI, such as www.example.com in http://www.example.com/foo?bar#baz.

Ipv4Address

This is the IPv4 portion of the IPv6 host name in the URI, such as 1.2.3.4 in http://[::ffff:1.2.3.4]/foo?bar#baz.

Ipv6Address

This is the IPv6 host name in the URI, such as ::ffff:1.2.3.4 in http://[::ffff:1.2.3.4]/foo?bar#baz.

IpvFuture

This is the IPvFuture host name in the URI, such as v7.aB in http://[v7.aB]/foo?bar#baz.

Path

This is the path of the URI, such as /foo in http://www.example.com/foo?bar#baz.

Query

This is the query of the URI, such as ?bar in http://www.example.com/foo?bar#baz.

Scheme

This is the scheme of the URI, such as http in http://www.example.com/foo?bar#baz.

Userinfo

This is the scheme of the URI, such as nobody in http://nobody@www.example.com/foo?bar#baz.

Trait Implementations

impl Clone for Context[src]

impl Copy for Context[src]

impl Debug for Context[src]

impl Display for Context[src]

impl PartialEq<Context> for Context[src]

impl StructuralPartialEq for Context[src]

Auto Trait Implementations

impl RefUnwindSafe for Context

impl Send for Context

impl Sync for Context

impl Unpin for Context

impl UnwindSafe for Context

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> From<T> for T[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> ToString for T where
    T: Display + ?Sized
[src]

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.