pub struct UndeleteOptions {
pub file: String,
pub undo_file: Option<String>,
pub table: Option<String>,
pub min_trx_id: Option<u64>,
pub confidence: f64,
pub format: String,
pub json: bool,
pub verbose: bool,
pub page: Option<u64>,
pub page_size: Option<u32>,
pub keyring: Option<String>,
pub mmap: bool,
}Expand description
Options for the inno undelete subcommand.
Fields§
§file: StringPath to the InnoDB tablespace file (.ibd).
undo_file: Option<String>Path to an undo tablespace (ibdata1 or .ibu) for undo log scanning.
table: Option<String>Filter by table name.
min_trx_id: Option<u64>Minimum transaction ID to include.
confidence: f64Minimum confidence threshold (0.0–1.0).
format: StringRecord output format: csv, json, sql, hex.
json: boolOutput full metadata JSON envelope (overrides format).
verbose: boolShow additional detail.
page: Option<u64>Recover from a specific page only.
page_size: Option<u32>Override page size.
keyring: Option<String>Path to MySQL keyring file.
mmap: boolUse memory-mapped I/O.
Auto Trait Implementations§
impl Freeze for UndeleteOptions
impl RefUnwindSafe for UndeleteOptions
impl Send for UndeleteOptions
impl Sync for UndeleteOptions
impl Unpin for UndeleteOptions
impl UnsafeUnpin for UndeleteOptions
impl UnwindSafe for UndeleteOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more