filebox 0.1.0-beta.0

Unified file (local, remote url, or cloud storage) box for easy easier management and manipulation.
Documentation
use std::fmt;

// TODO: FileBox Implementation
pub struct FileBox {}

impl FileBox {
    pub fn to_string(&self) -> String {
        String::new()
    }
}

impl fmt::Display for FileBox {
    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(fmt, "{}", self.to_string())
    }
}

impl From<String> for FileBox {
    fn from(_: String) -> Self {
        Self {}
    }
}