Trait canteen::request::FromUri [] [src]

pub trait FromUri {
    fn from_uri(data: &str) -> Self;
}

A trait that allows for extracting variables from URIs.

Required Methods

A function to parse a string into the correct type.

Implementations on Foreign Types

impl FromUri for String
[src]

[src]

impl FromUri for i32
[src]

[src]

impl FromUri for u32
[src]

[src]

impl FromUri for f32
[src]

[src]

Implementors