pub trait Close {
    // Required method
    fn close(&mut self);
}

Required Methods§

source

fn close(&mut self)

| Flush to the database file and close | the database. | | Also close the environment if no other | databases are open in it. |

Implementors§