Trait ckb_rocksdb::ops::Open[][src]

pub trait Open: OpenRaw {
    fn open_default<P: AsRef<Path>>(path: P) -> Result<Self, Error> { ... }
fn open<P: AsRef<Path>>(opts: &Options, path: P) -> Result<Self, Error> { ... }
fn open_with_descriptor<P: AsRef<Path>>(
        opts: &Options,
        path: P,
        descriptor: Self::Descriptor
    ) -> Result<Self, Error> { ... } }

Provided methods

fn open_default<P: AsRef<Path>>(path: P) -> Result<Self, Error>[src]

Open a database with default options.

fn open<P: AsRef<Path>>(opts: &Options, path: P) -> Result<Self, Error>[src]

Open the database with the specified options.

fn open_with_descriptor<P: AsRef<Path>>(
    opts: &Options,
    path: P,
    descriptor: Self::Descriptor
) -> Result<Self, Error>
[src]

Loading content...

Implementors

Loading content...