crate::ix!();
pub struct ErrorEnv {
base: EnvWrapper,
writable_file_error: bool,
num_writable_file_errors: i32,
}
impl Default for ErrorEnv {
fn default() -> Self {
todo!();
}
}
impl Drop for ErrorEnv {
fn drop(&mut self) {
todo!();
}
}
impl ErrorEnv {
pub fn new_writable_file(&mut self,
fname: &String,
result: *mut *mut dyn WritableFile) -> crate::Status {
todo!();
}
pub fn new_appendable_file(&mut self,
fname: &String,
result: *mut *mut dyn WritableFile) -> crate::Status {
todo!();
}
}
pub fn random_string(
rnd: *mut Random,
len: i32,
dst: *mut String) -> Slice {
todo!();
}
pub fn random_key(
rnd: *mut Random,
len: i32) -> String {
todo!();
}
pub fn compressible_string(
rnd: *mut Random,
compressed_fraction: f64,
len: usize,
dst: *mut String) -> Slice {
todo!();
}