megalib 0.11.1

Rust client library for Mega.nz cloud storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Filesystem operations module.
//!
//! Most filesystem behavior is implemented as `impl Session` in `fs/operations/*`
//! and surfaced via `Session`/`SessionHandle` methods (e.g., list/stat/upload).

pub(crate) mod node;
mod operations;
pub mod upload_state;

pub use node::{Node, NodeType, Quota};
pub use upload_state::UploadState;