pub struct TsidOptions {
pub datadir: String,
pub list: bool,
pub tablespace_id: Option<u32>,
pub json: bool,
pub page_size: Option<u32>,
}Expand description
Options for the inno tsid subcommand.
Fields§
§datadir: StringMySQL data directory path to scan.
list: boolList all tablespace IDs found in the data directory.
tablespace_id: Option<u32>Find the tablespace file with this specific space ID.
json: boolEmit output as JSON.
page_size: Option<u32>Override the auto-detected page size.
Auto Trait Implementations§
impl Freeze for TsidOptions
impl RefUnwindSafe for TsidOptions
impl Send for TsidOptions
impl Sync for TsidOptions
impl Unpin for TsidOptions
impl UnwindSafe for TsidOptions
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