net-file 0.1.3

This crate defines some operations on files and directories used in net-stalker project.
Documentation
1
2
3
4
5
6
pub trait Translator {
    type Input;
    type Output;

    fn translate(data: Self::Input) -> Self::Output;
}