kxio 0.1.0

Provides injectable Filesystem and Network resources to make code more testable
Documentation
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub enum RequestMethod {
    Get,
    Post,
    Put,
    Patch,
    Delete,
    Propfind,
}
impl Default for RequestMethod {
    fn default() -> Self {
        Self::Get
    }
}
impl std::fmt::Display for RequestMethod {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::Get => write!(f, "GET"),
            Self::Post => write!(f, "POST"),
            Self::Put => write!(f, "PUT"),
            Self::Patch => write!(f, "PATCH"),
            Self::Delete => write!(f, "DELETE"),
            Self::Propfind => write!(f, "PROPFIND"),
        }
    }
}