1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//! # Storj DCS Uplink for Rust
//!
//! This crate provides an idiomatic and safe Rust bindings for
//! [Storj DCS Uplink](https://pkg.go.dev/storj.io/uplink).
//!
//! It wraps the low level crate `uplink-sys`, auto-generated by
//! [bindgen](https://github.com/rust-lang/rust-bindgen). We use the term FFI through all this crate
//! documentation and error messages when referencing the low level crate.
pub
pub
pub
pub use Bucket;
pub use Config;
pub use EncryptionKey;
pub use Error;
pub use Object;
pub use Project;
/// A specialized [`Result`](https://doc.rust-lang.org/std/result/enum.Result.html)
/// type for Storj Uplink operations.
///
/// This type is broadly used across this crate for any operations which may
/// produce an error.
///
/// This type is generally used to avoid writing out `storj_uplink_lib::Error`
/// directly and reduce repetition making the signature functions more concise.
pub type Result<T> = Result;