func (self *Leveldb) Close() error { C.leveldb_close(self.cdb) C.leveldb_readoptions_destroy(self.read_options) C.leveldb_writeoptions_destroy(self.write_options) C.leveldb_cache_destroy(self.cache) return nil }
// Close deallocates the WriteOptions, freeing its underlying C struct. func (wo *WriteOptions) Close() { C.leveldb_writeoptions_destroy(wo.Opt) }
func (option *Options) Destroy_writeoptions() { C.leveldb_writeoptions_destroy(option.options) }