rs_transfer 6.0.1

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
pub mod endpoint;
mod error;
pub mod list;
pub mod reader;
pub mod secret;
pub mod writer;

pub use error::Error;

#[derive(Debug)]
pub enum StreamData {
  Data(Vec<u8>),
  Size(u64),
  Stop,
  Eof,
}