Module opendal::raw

source ·
Expand description

Raw modules provide raw APIs that used by underlying services

Notes

  • Only developers who want to develop new services or layers need to access raw APIs.
  • Raw APIs should only be accessed via opendal::raw::Xxxx, any public API should never expose raw API directly.
  • Raw APIs are far more less stable than public API, please don’t rely on them whenever possible.

Modules

  • Providing adapters and its implementations.
  • oio provides OpenDAL’s raw traits and types that opendal returns as output.
  • teststests
    Utilities for opendal testing.

Structs

  • Metadata for accessor, users can use this metadata to get information of underlying backend.
  • BytesContentRange is the content range of bytes.
  • BytesRange(offset, size) carries a range of content.
  • ConcurrentFutures is a stream that can hold a stream of concurrent futures.
  • ConfigDeserializer is used to deserialize given configs from HashMap<String, String>.
  • FormDataPart is a builder for multipart/form-data part.
  • HttpClient that used across opendal.
  • MixedPart is a builder for multipart/mixed part.
  • Multipart is a builder for multipart/form-data.
  • Args for batch operation.
  • Args for copy operation.
  • Args for create operation.
  • Args for delete operation.
  • Args for list operation.
  • Args for presign operation.
  • Args for read operation.
  • Args for reader operation.
  • Args for rename operation.
  • Args for stat operation.
  • Args for write operation.
  • PathCacherinternal-path-cache
    PathCacher is a cache for path query.
  • PresignedRequest is a presigned request return by presign.
  • Reply for batch operation.
  • Reply for copy operation.
  • Reply for create_dir operation
  • Reply for delete operation
  • Reply for list operation.
  • Reply for presign operation.
  • Reply for read operation.
  • Reply for rename operation.
  • Reply for stat operation.
  • Reply for write operation.

Enums

  • Batch operation used for batch.
  • Batch results of batch operations.
  • FourWays is used to implement traits that based on four ways.
  • Operation is the name for APIs in Accessor.
  • Presign operation used for presign.
  • ThreeWays is used to implement traits that based on three ways.
  • TwoWays is used to implement traits that based on two ways.

Constants

  • VERSION is the compiled version of OpenDAL.

Traits

  • Underlying trait of all backends for implementers.
  • Layer is used to intercept the operations on the underlying storage.
  • LayeredAccessor is layered accessor that forward all not implemented method to inner.
  • MaybeSend is a marker to determine whether a type is Send or not. We use this trait to wrap the Send requirement for wasm32 target.
  • Part is a trait for multipart part.
  • PathQueryinternal-path-cache
    The trait required for path cacher.

Functions

Type Aliases

  • BoxedFuture is the type alias of [futures::future::BoxFuture].
  • BoxedStaticFuture is the type alias of [futures::future::BoxFuture].
  • FusedAccessor is the type erased accessor with Arc<dyn Accessor>.