rustack-s3-core 0.9.0

S3 service implementation for Rustack
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! S3 operation handlers.
//!
//! This module contains the implementations of all S3 operations, organized
//! into submodules by category. Each submodule exposes `handle_*` methods
//! on [`crate::provider::RustackS3`].
//!
//! The server binary bridges these handlers to the HTTP layer by implementing
//! the `S3Handler` trait from `rustack-s3-http`.

pub mod bucket;
pub mod bucket_config;
pub mod list;
pub mod multipart;
pub mod object;
pub mod object_config;