logo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! This module exports the http method.

pub use hyper::method::Method;
pub use hyper::method::Method::{
    Options,
    Get,
    Post,
    Put,
    Delete,
    Head,
    Trace,
    Connect,
    Patch,
    Extension,
};