rs_transfer 8.0.0

A simple crate to handle downloads and uploads on multiple providers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod cursor;
mod file;
mod ftp;
mod gcs;
mod http;
mod one_drive;
mod s3;
mod sftp;

pub use self::cursor::CursorEndpoint;
pub use self::file::FileEndpoint;
pub use self::ftp::FtpEndpoint;
pub use self::gcs::GcsEndpoint;
pub use self::http::HttpEndpoint;
pub use self::one_drive::OneDriveEndpoint;
pub use self::s3::S3Endpoint;
pub use self::sftp::SftpEndpoint;