[][src]Struct rexrocksdb::rocksdb::Env

pub struct Env {
    pub inner: *mut DBEnv,
}

Fields

inner: *mut DBEnv

Methods

impl Env[src]

pub fn new_mem() -> Env[src]

pub fn new_sequential_file(
    &self,
    path: &str,
    opts: EnvOptions
) -> Result<SequentialFile, String>
[src]

pub fn file_exists(&self, path: &str) -> Result<(), String>[src]

pub fn delete_file(&self, path: &str) -> Result<(), String>[src]

Trait Implementations

impl Send for Env[src]

impl Drop for Env[src]

impl Sync for Env[src]

impl Default for Env[src]

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]