sharp_pencil/
method.rs

1//! This module exports the http method.
2
3pub use hyper::method::Method;
4pub use hyper::method::Method::{
5    Options,
6    Get,
7    Post,
8    Put,
9    Delete,
10    Head,
11    Trace,
12    Connect,
13    Patch,
14    Extension,
15};