pub struct RecoverOptions {
pub file: String,
pub page: Option<u64>,
pub verbose: bool,
pub json: bool,
pub force: bool,
pub page_size: Option<u32>,
pub keyring: Option<String>,
}Expand description
Options for the inno recover subcommand.
Fields§
§file: StringPath to the InnoDB tablespace file (.ibd).
page: Option<u64>Analyze a single page instead of full scan.
verbose: boolShow per-page details.
json: boolEmit output as JSON.
force: boolExtract records from corrupt pages with valid headers.
page_size: Option<u32>Override the auto-detected page size.
keyring: Option<String>Path to MySQL keyring file for decrypting encrypted tablespaces.
Auto Trait Implementations§
impl Freeze for RecoverOptions
impl RefUnwindSafe for RecoverOptions
impl Send for RecoverOptions
impl Sync for RecoverOptions
impl Unpin for RecoverOptions
impl UnwindSafe for RecoverOptions
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