Enum sozu_lib::parser::http11::Method [−][src]
pub enum Method {
Get,
Post,
Head,
Options,
Put,
Delete,
Trace,
Connect,
Custom(String),
}Variants
GetPostHeadOptionsPutDeleteTraceConnectCustom(String)
Methods
impl Method[src]
impl MethodTrait Implementations
impl PartialEq for Method[src]
impl PartialEq for Methodfn eq(&self, other: &Method) -> bool[src]
fn eq(&self, other: &Method) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Method) -> bool[src]
fn ne(&self, other: &Method) -> boolThis method tests for !=.
impl Debug for Method[src]
impl Debug for Methodfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for Method[src]
impl Clone for Methodfn clone(&self) -> Method[src]
fn clone(&self) -> MethodReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Display for Method[src]
impl Display for Method