use super::MethodKind;
impl super::Method {
pub const GET: Self = Self(MethodKind::Get);
pub const PUT: Self = Self(MethodKind::Put);
pub const POST: Self = Self(MethodKind::Post);
pub const DELETE: Self = Self(MethodKind::Delete);
pub const OPTIONS: Self = Self(MethodKind::Options);
pub const HEAD: Self = Self(MethodKind::Head);
pub const TRACE: Self = Self(MethodKind::Trace);
pub const CONNECT: Self = Self(MethodKind::Connect);
pub const PATCH: Self = Self(MethodKind::Patch);
}