Enum rocket::http::Method
[−]
[src]
pub enum Method {
Get,
Put,
Post,
Delete,
Options,
Head,
Trace,
Connect,
Patch,
}Representation of HTTP methods.
Variants
GetPutPostDeleteOptionsHeadTraceConnectPatch
Methods
impl Method[src]
fn supports_payload(&self) -> bool[src]
Returns true if an HTTP request with the method represented by self
supports a payload.
Example
use rocket::http::Method; assert_eq!(Method::Get.supports_payload(), false); assert_eq!(Method::Post.supports_payload(), true);
fn as_str(&self) -> &'static str[src]
Returns the string representation of self.
Example
use rocket::http::Method; assert_eq!(Method::Get.as_str(), "GET");
Trait Implementations
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 Copy for Method[src]
impl PartialEq 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, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl Eq for Method[src]
impl Hash for Method[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)[src]
Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for Method[src]
impl FromStr for Method[src]
type Err = Error
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Method, Error>[src]
Parses a string s to return a value of this type. Read more
impl Display for Method[src]
fn fmt(&self, f: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more