Skip to main content

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 metadata;
10pub mod multipart;
11pub mod presign;
12pub mod range;
13pub mod scope;