wrangler 1.14.1

Command-line interface for all things Cloudflare Workers
Documentation
use std::str::FromStr;

#[derive(Clone, Debug)]
pub enum HttpMethod {
    Get,
    Post,
}

impl Default for HttpMethod {
    fn default() -> HttpMethod {
        HttpMethod::Get
    }
}

impl FromStr for HttpMethod {
    type Err = failure::Error;
    fn from_str(s: &str) -> Result<Self, failure::Error> {
        match s {
            "get" => Ok(HttpMethod::Get),
            "post" => Ok(HttpMethod::Post),
            _ => Ok(HttpMethod::default()),
        }
    }
}