pub struct SdiOptions {
pub file: String,
pub pretty: bool,
pub page_size: Option<u32>,
pub keyring: Option<String>,
}Expand description
Options for the inno sdi subcommand.
Fields§
§file: StringPath to the InnoDB tablespace file (.ibd).
pretty: boolPretty-print the extracted JSON metadata.
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 SdiOptions
impl RefUnwindSafe for SdiOptions
impl Send for SdiOptions
impl Sync for SdiOptions
impl Unpin for SdiOptions
impl UnwindSafe for SdiOptions
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