idcurl 0.5.2

Idiomatic synchronous http client based on curl
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

/// Specify the HTTP method to use
#[derive(Debug,Copy,Clone)]
pub enum Method
{
	GET,
	POST,
	PUT,
	DELETE,
	HEAD,
	OPTIONS,
	TRACE,
}