flep 0.2.0

File transfer protocol (FTP) library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use protocol;

error_chain! {
    types {
        Error, ErrorKind, ResultExt;
    }

    links {
        Protocol(protocol::Error, protocol::ErrorKind);
    }

    foreign_links {
        Io(::std::io::Error);
    }
}