Modules§
- metrics 🔒object-store metrics
- Services will provide builders to build underlying backends.
Structs§
- Buffer is a wrapper of contiguous
Bytes
and non-contiguous[Bytes]
. - Entry returned by
Lister
or [BlockingLister
] to represent a path and it’s relative metadata. - Error is the error struct returned by all opendal functions.
- FuturesAsyncReader is the adapter of [
AsyncRead
], [AsyncBufRead
] and [AsyncSeek
] generated byReader::into_futures_async_read
. - FuturesIoAsyncWriter is the adapter of [
AsyncWrite
] forWriter
. - HttpClient that used across opendal.
- Lister is designed to list entries at given path in an asynchronous manner.
- The
Operator
serves as the entry point for all public asynchronous APIs. - Reader is designed to read data from given path in an asynchronous manner.
- Writer is designed to write data into given path in an asynchronous manner.
Enums§
- EntryMode represents the mode.
- ErrorKind is all kinds of Error of opendal.
Constants§
- The default object cache directory name.
Traits§
- Underlying trait of all backends for implementers.
- Builder is used to set up underlying services.
Type Aliases§
- Result that is a wrapper of
Result<T, opendal::Error>