objectstore_types/lib.rs
1//! # Shared Types
2//!
3//! This crate defines the types shared between the objectstore server, service,
4//! and client libraries. Refer to each module's documentation for details.
5#![warn(missing_docs)]
6#![warn(missing_debug_implementations)]
7
8pub mod auth;
9pub mod duration;
10pub mod headers;
11pub mod metadata;
12pub mod multipart;
13pub mod presign;
14pub mod range;
15pub mod scope;