Struct actix_web::dev::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]
fn clone(&self) -> Method
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq<Method> for Method
[src]
fn eq(&self, __arg_0: &Method) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Method) -> bool
[src]
This method tests for !=
.
impl<'a> PartialEq<&'a str> for Method
[src]
fn eq(&self, other: &&'a str) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl PartialEq<str> for Method
[src]
fn eq(&self, other: &str) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
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
Associated error with the conversion this implementation represents.
fn try_from(t: Method) -> Result<Method, <Method as HttpTryFrom<Method>>::Error>
[src]
impl<'a> HttpTryFrom<&'a [u8]> for Method
[src]
type Error = InvalidMethod
Associated error with the conversion this implementation represents.
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
Associated error with the conversion this implementation represents.
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>