[][src]Enum grout::route::PathSegment

pub enum PathSegment<'a> {
    Dynamic,
    Static(&'a str),
}

Path segments are matched during routing. Static segments are matched through hash equality. If no static segments match, a corresponding dynamic segment is attempted. For example: GET /foo/bar matches vec![Static("foo"), Dynamic] instead of vec![Dynamic, Dynamic].

Dynamic parameters are collected during routing and passed into the handler in an ordered list.

Variants

Dynamic
Static(&'a str)

Trait Implementations

impl<'a> Debug for PathSegment<'a>[src]

impl<'a> Eq for PathSegment<'a>[src]

impl<'a> Hash for PathSegment<'a>[src]

impl<'a> PartialEq<PathSegment<'a>> for PathSegment<'a>[src]

impl<'a> StructuralEq for PathSegment<'a>[src]

impl<'a> StructuralPartialEq for PathSegment<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for PathSegment<'a>

impl<'a> Send for PathSegment<'a>

impl<'a> Sync for PathSegment<'a>

impl<'a> Unpin for PathSegment<'a>

impl<'a> UnwindSafe for PathSegment<'a>

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.