pub struct FindOptions {
pub datadir: String,
pub page: u64,
pub checksum: Option<u32>,
pub space_id: Option<u32>,
pub first: bool,
pub json: bool,
pub page_size: Option<u32>,
}Expand description
Options for the inno find subcommand.
Fields§
§datadir: StringMySQL data directory path to search.
page: u64Page number to search for across all tablespace files.
checksum: Option<u32>Optional checksum filter — only match pages with this stored checksum.
space_id: Option<u32>Optional space ID filter — only match pages in this tablespace.
first: boolStop searching after the first match.
json: boolEmit output as JSON.
page_size: Option<u32>Override the auto-detected page size.
Auto Trait Implementations§
impl Freeze for FindOptions
impl RefUnwindSafe for FindOptions
impl Send for FindOptions
impl Sync for FindOptions
impl Unpin for FindOptions
impl UnwindSafe for FindOptions
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