azure_data_cosmos/
lib.rs

1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT License.
3
4#![doc = include_str!("../README.md")]
5#![cfg_attr(docsrs, feature(doc_cfg))]
6
7pub mod clients;
8mod connection_string;
9pub mod constants;
10mod feed;
11mod options;
12mod partition_key;
13pub(crate) mod pipeline;
14pub mod query;
15pub(crate) mod resource_context;
16pub(crate) mod utils;
17
18pub mod models;
19
20mod location_cache;
21
22#[doc(inline)]
23pub use clients::CosmosClient;
24
25pub use connection_string::*;
26pub use options::*;
27pub use partition_key::*;
28pub use query::Query;
29
30pub use feed::{FeedPage, FeedPager};