opendal/raw/
mod.rs

1// Licensed to the Apache Software Foundation (ASF) under one
2// or more contributor license agreements.  See the NOTICE file
3// distributed with this work for additional information
4// regarding copyright ownership.  The ASF licenses this file
5// to you under the Apache License, Version 2.0 (the
6// "License"); you may not use this file except in compliance
7// with the License.  You may obtain a copy of the License at
8//
9//   http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing,
12// software distributed under the License is distributed on an
13// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14// KIND, either express or implied.  See the License for the
15// specific language governing permissions and limitations
16// under the License.
17
18//! Raw modules provide raw APIs that used by underlying services
19//!
20//! ## Notes
21//!
22//! - Only developers who want to develop new services or layers need to
23//!   access raw APIs.
24//! - Raw APIs should only be accessed via `opendal::raw::Xxxx`, any public
25//!   API should never expose raw API directly.
26//! - Raw APIs are far less stable than public API, please don't rely on
27//!   them whenever possible.
28
29mod accessor;
30pub use accessor::*;
31
32mod layer;
33pub use layer::*;
34
35mod path;
36pub use path::*;
37
38#[cfg(feature = "internal-path-cache")]
39mod path_cache;
40#[cfg(feature = "internal-path-cache")]
41pub use path_cache::*;
42
43mod operation;
44pub use operation::*;
45
46mod version;
47pub use version::VERSION;
48
49mod rps;
50pub use rps::*;
51
52mod ops;
53pub use ops::*;
54
55mod http_util;
56pub use http_util::*;
57
58mod serde_util;
59pub use serde_util::*;
60
61mod chrono_util;
62pub use chrono_util::*;
63
64#[cfg(feature = "internal-tokio-rt")]
65mod tokio_util;
66#[cfg(feature = "internal-tokio-rt")]
67pub use tokio_util::*;
68
69mod std_io_util;
70pub use std_io_util::*;
71
72mod futures_util;
73pub use futures_util::BoxedFuture;
74pub use futures_util::BoxedStaticFuture;
75pub use futures_util::ConcurrentTasks;
76pub use futures_util::MaybeSend;
77
78mod enum_utils;
79pub use enum_utils::*;
80
81mod atomic_util;
82pub use atomic_util::*;
83
84// Expose as a pub mod to avoid confusing.
85pub mod adapters;
86pub mod oio;
87#[cfg(feature = "tests")]
88pub mod tests;