remotefs 0.3.1

a client library to work with all file transfer protocols
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! ## Fs
//!
//! `fs` is the module which provides remote file system entities

mod errors;
mod file;
pub mod stream;
mod sync;
mod welcome;

pub use self::errors::{RemoteError, RemoteErrorType, RemoteResult};
pub use self::file::{File, FileType, Metadata, UnixPex, UnixPexClass};
pub use self::stream::{ReadStream, WriteStream};
pub use self::sync::RemoteFs;
pub use self::welcome::Welcome;