pub struct ChecksumOptions {
pub file: String,
pub verbose: bool,
pub json: bool,
pub page_size: Option<u32>,
pub keyring: Option<String>,
}Expand description
Options for the inno checksum subcommand.
Fields§
§file: StringPath to the InnoDB tablespace file (.ibd).
verbose: boolShow per-page checksum details.
json: boolEmit output as JSON.
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 ChecksumOptions
impl RefUnwindSafe for ChecksumOptions
impl Send for ChecksumOptions
impl Sync for ChecksumOptions
impl Unpin for ChecksumOptions
impl UnwindSafe for ChecksumOptions
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