Trait resty::request::params::Parser [] [src]

pub trait Parser: Send + Sync + 'static {
    type Params;
    fn expected_params(&self) -> (usize, String);
fn parse(&self, uri: &Uri, skip: usize) -> Result<Self::Params, Error>; }

Params Parser

Associated Types

Returned Parameters type.

Required Methods

Returns number of expected params and param names.

Parser URL and return params

Implementors