object_store

Trait ObjectStoreBuilder

pub trait ObjectStoreBuilder: Default + 'static {
    type Config: Configurator;

    const SCHEME: Scheme;

    // Required method
    fn build(self) -> Result<impl Access, Error>;
}
Expand description

Builder is used to set up underlying services.

This trait allows the developer to define a builder struct that can:

  • build a service via builder style API.
  • configure in-memory options like http_client or customized_credential_load.

Usually, users don’t need to use or import this trait directly, they can use Operator API instead.

For example:

use opendal::services::Fs;
use opendal::Operator;
async fn test() -> Result<()> {
    // Create fs backend builder.
    let mut builder = Fs::default().root("/tmp");

    // Build an `Operator` to start operating the storage.
    let op: Operator = Operator::new(builder)?.finish();

    Ok(())
}

Required Associated Constants§

const SCHEME: Scheme

Associated scheme for this builder. It indicates what underlying service is.

Required Associated Types§

type Config: Configurator

Associated configuration for this builder.

Required Methods§

fn build(self) -> Result<impl Access, Error>

Consume the accessor builder to build a service.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

§

impl Builder for ()

Dummy implementation of builder

§

const SCHEME: Scheme

§

type Config = ()

§

fn build(self) -> Result<impl Access, Error>

Implementors§

§

impl Builder for AzblobBuilder

§

const SCHEME: Scheme = Scheme::Azblob

§

type Config = AzblobConfig

§

impl Builder for FsBuilder

§

const SCHEME: Scheme = Scheme::Fs

§

type Config = FsConfig

§

impl Builder for GcsBuilder

§

const SCHEME: Scheme = Scheme::Gcs

§

type Config = GcsConfig

§

impl Builder for HttpBuilder

§

const SCHEME: Scheme = Scheme::Http

§

type Config = HttpConfig

§

impl Builder for MemoryBuilder

§

const SCHEME: Scheme = Scheme::Memory

§

type Config = MemoryConfig

§

impl Builder for OssBuilder

§

const SCHEME: Scheme = Scheme::Oss

§

type Config = OssConfig

§

impl Builder for S3Builder

§

const SCHEME: Scheme = Scheme::S3

§

type Config = S3Config