opendal/types/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
18mod mode;
19pub use mode::EntryMode;
20
21mod buffer;
22pub use buffer::Buffer;
23
24mod entry;
25pub use entry::Entry;
26
27mod metadata;
28pub use metadata::Metadata;
29
30mod read;
31pub use read::*;
32
33mod write;
34pub use write::*;
35
36mod list;
37pub use list::Lister;
38
39mod delete;
40pub use delete::*;
41
42mod execute;
43pub use execute::*;
44
45mod operator;
46pub use operator::operator_futures;
47pub use operator::Operator;
48pub use operator::OperatorBuilder;
49pub use operator::OperatorInfo;
50
51mod builder;
52pub use builder::Builder;
53pub use builder::Configurator;
54
55mod error;
56pub use error::Error;
57pub use error::ErrorKind;
58pub use error::Result;
59
60mod scheme;
61pub use scheme::Scheme;
62
63mod capability;
64pub use capability::Capability;
65
66pub mod options;
67
68mod context;
69pub(crate) use context::*;