filebox/lib.rs
1use std::fmt;
2
3// TODO: FileBox Implementation
4pub struct FileBox {}
5
6impl FileBox {
7 pub fn to_string(&self) -> String {
8 String::new()
9 }
10}
11
12impl fmt::Display for FileBox {
13 fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
14 write!(fmt, "{}", self.to_string())
15 }
16}
17
18impl From<String> for FileBox {
19 fn from(_: String) -> Self {
20 Self {}
21 }
22}