[][src]Enum rocket::http::uri::Path

pub enum Path {}

Marker type indicating use of a type for the path UriPart of a URI.

In route URIs, this corresponds to all of the text before a ?, if any, or all of the text in the URI otherwise:

#[get("/home/<name>/<page>?<item>")]
       ^------------------ Path

Trait Implementations

impl<'x, 'a> FromUriParam<Path, &'x &'a Path> for &'a Path[src]

type Target = &'x &'a Path

The resulting type of this conversion.

impl<'x, 'a> FromUriParam<Path, &'x mut PathBuf> for &'a Path[src]

type Target = &'x mut PathBuf

The resulting type of this conversion.

impl<'x, 'a> FromUriParam<Path, &'x &'a Path> for PathBuf[src]

type Target = &'x &'a Path

The resulting type of this conversion.

impl<'x> FromUriParam<Path, &'x mut PathBuf> for PathBuf[src]

type Target = &'x mut PathBuf

The resulting type of this conversion.

impl<'a, 'b> FromUriParam<Path, &'a &'b str> for PathBuf[src]

A no cost conversion allowing an &&str to be used in place of a PathBuf.

type Target = &'b Path

The resulting type of this conversion.

impl<'x, 'a> FromUriParam<Path, &'x PathBuf> for &'a Path[src]

type Target = &'x PathBuf

The resulting type of this conversion.

impl<'a> FromUriParam<Path, &'a Path> for PathBuf[src]

type Target = &'a Path

The resulting type of this conversion.

impl<'x> FromUriParam<Path, &'x PathBuf> for PathBuf[src]

type Target = &'x PathBuf

The resulting type of this conversion.

impl<'a> FromUriParam<Path, &'a Path> for &'a Path[src]

type Target = &'a Path

The resulting type of this conversion.

impl FromUriParam<Path, PathBuf> for PathBuf[src]

type Target = PathBuf

The resulting type of this conversion.

impl<'x, 'a> FromUriParam<Path, &'x mut &'a Path> for PathBuf[src]

type Target = &'x mut &'a Path

The resulting type of this conversion.

impl<'a> FromUriParam<Path, &'a str> for PathBuf[src]

A no cost conversion allowing an &str to be used in place of a PathBuf.

type Target = &'a Path

The resulting type of this conversion.

impl<'a> FromUriParam<Path, PathBuf> for &'a Path[src]

type Target = PathBuf

The resulting type of this conversion.

impl<'x, 'a> FromUriParam<Path, &'x mut &'a Path> for &'a Path[src]

type Target = &'x mut &'a Path

The resulting type of this conversion.

impl UriDisplay<Path> for PathBuf[src]

Percent-encodes each segment in the path and normalizes separators.

impl UriDisplay<Path> for Path[src]

Percent-encodes each segment in the path and normalizes separators.

impl UriPart for Path[src]

Auto Trait Implementations

impl Send for Path

impl Sync for Path

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> IntoCollection for T[src]

impl<T, I> AsResult for T where
    I: Input
[src]