Trait finchers::request::FromParam [] [src]

pub trait FromParam: Sized {
    type Error;
    fn from_param(s: &str) -> Result<Self, Self::Error>;
}

Represents the conversion from a path segment

Associated Types

The error type of from_param()

Required Methods

Try to convert a str to itself

Implementors