1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
use crate::engine::PanicEngine;
use engine_traits::{Mutable, Result, WriteBatch, WriteBatchExt, WriteOptions};
impl WriteBatchExt for PanicEngine {
type WriteBatch = PanicWriteBatch;
type WriteBatchVec = PanicWriteBatch;
const WRITE_BATCH_MAX_KEYS: usize = 1;
fn support_write_batch_vec(&self) -> bool {
panic!()
}
fn write_batch(&self) -> Self::WriteBatch {
panic!()
}
fn write_batch_with_cap(&self, cap: usize) -> Self::WriteBatch {
panic!()
}
}
pub struct PanicWriteBatch;
impl WriteBatch<PanicEngine> for PanicWriteBatch {
fn with_capacity(_: &PanicEngine, _: usize) -> Self {
panic!()
}
fn write_opt(&self, _: &WriteOptions) -> Result<()> {
panic!()
}
fn data_size(&self) -> usize {
panic!()
}
fn count(&self) -> usize {
panic!()
}
fn is_empty(&self) -> bool {
panic!()
}
fn should_write_to_engine(&self) -> bool {
panic!()
}
fn clear(&mut self) {
panic!()
}
fn set_save_point(&mut self) {
panic!()
}
fn pop_save_point(&mut self) -> Result<()> {
panic!()
}
fn rollback_to_save_point(&mut self) -> Result<()> {
panic!()
}
}
impl Mutable for PanicWriteBatch {
fn put(&mut self, key: &[u8], value: &[u8]) -> Result<()> {
panic!()
}
fn put_cf(&mut self, cf: &str, key: &[u8], value: &[u8]) -> Result<()> {
panic!()
}
fn delete(&mut self, key: &[u8]) -> Result<()> {
panic!()
}
fn delete_cf(&mut self, cf: &str, key: &[u8]) -> Result<()> {
panic!()
}
fn delete_range(&mut self, begin_key: &[u8], end_key: &[u8]) -> Result<()> {
panic!()
}
fn delete_range_cf(&mut self, cf: &str, begin_key: &[u8], end_key: &[u8]) -> Result<()> {
panic!()
}
}