Struct simple_server::Method
[−]
[src]
pub struct Method(_);
The Request Method (VERB)
This type also contains constants for a number of common HTTP methods such as GET, POST, etc.
Currently includes 8 variants representing the 8 methods defined in RFC 7230, plus PATCH, and an Extension variant for all extensions.
Examples
use http::Method; assert_eq!(Method::GET, Method::from_bytes(b"GET").unwrap()); assert!(Method::GET.is_idempotent()); assert_eq!(Method::POST.as_str(), "POST");
Methods
impl Method
[src]
const GET: Method
GET: Method = Method(Get)
const POST: Method
POST: Method = Method(Post)
const PUT: Method
PUT: Method = Method(Put)
const DELETE: Method
DELETE: Method = Method(Delete)
const HEAD: Method
HEAD: Method = Method(Head)
const OPTIONS: Method
OPTIONS: Method = Method(Options)
const CONNECT: Method
CONNECT: Method = Method(Connect)
const PATCH: Method
PATCH: Method = Method(Patch)
const TRACE: Method
TRACE: Method = Method(Trace)
fn from_bytes(src: &[u8]) -> Result<Method, InvalidMethod>
[src]
Converts a slice of bytes to an HTTP method.
fn is_safe(&self) -> bool
[src]
Whether a method is considered "safe", meaning the request is essentially read-only.
See the spec for more words.
fn is_idempotent(&self) -> bool
[src]
Whether a method is considered "idempotent", meaning the request has the same result if executed multiple times.
See the spec for more words.
fn as_str(&self) -> &str
[src]
Return a &str representation of the HTTP method
Trait Implementations
impl Hash for Method
[src]
impl Clone for Method
[src]
impl PartialEq<Method> for Method
[src]
impl<'a> PartialEq<&'a str> for Method
[src]
impl PartialEq<str> for Method
[src]
impl Debug for Method
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter.
impl Default for Method
[src]
impl Eq for Method
[src]
impl AsRef<str> for Method
[src]
impl HttpTryFrom<Method> for Method
[src]
type Error = Error
fn try_from(t: Method) -> Result<Method, <Method as HttpTryFrom<Method>>::Error>
[src]
impl<'a> HttpTryFrom<&'a [u8]> for Method
[src]
type Error = InvalidMethod
fn try_from(
t: &'a [u8]
) -> Result<Method, <Method as HttpTryFrom<&'a [u8]>>::Error>
[src]
t: &'a [u8]
) -> Result<Method, <Method as HttpTryFrom<&'a [u8]>>::Error>
impl<'a> HttpTryFrom<&'a str> for Method
[src]
type Error = InvalidMethod
fn try_from(
t: &'a str
) -> Result<Method, <Method as HttpTryFrom<&'a str>>::Error>
[src]
t: &'a str
) -> Result<Method, <Method as HttpTryFrom<&'a str>>::Error>