Enum canteen::request::Method[][src]

pub enum Method {
    Get,
    Put,
    Post,
    Delete,
    NoImpl,
}

This enum represents the various types of HTTP requests.

Variants

Trait Implementations

impl PartialEq for Method
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Method
[src]

impl Hash for Method
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for Method
[src]

Formats the value using the given formatter. Read more

impl Copy for Method
[src]

impl Clone for Method
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Method

impl Sync for Method