Struct ckb_db::write_batch::RocksDBWriteBatch [−][src]
pub struct RocksDBWriteBatch { /* fields omitted */ }
Expand description
An atomic batch of write operations.
Making an atomic commit of several write operations.
Implementations
Return WriteBatch serialized size (in bytes).
Write the bytes into the given column with associated key.
Delete the data associated with the given key and given column.
Remove database entries from start key to end key.
Removes the database entries in the range [“begin_key”, “end_key”), i.e., including “begin_key” and excluding “end_key”. It is not an error if no keys exist in the range [“begin_key”, “end_key”).
Auto Trait Implementations
impl RefUnwindSafe for RocksDBWriteBatch
impl !Send for RocksDBWriteBatch
impl !Sync for RocksDBWriteBatch
impl Unpin for RocksDBWriteBatch
impl UnwindSafe for RocksDBWriteBatch