file_node 0.0.1

Build data services and expose them as a vfs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(Debug, Clone)]
pub struct FileNode {
    pub content: Vec<u8>,
}

impl FileNode {
    pub fn new() -> FileNode {
        FileNode {
            content: Vec::new()
        }
    }
}