pub struct ValidateOptions {Show 13 fields
pub datadir: String,
pub database: Option<String>,
pub table: Option<String>,
pub host: Option<String>,
pub port: Option<u16>,
pub user: Option<String>,
pub password: Option<String>,
pub defaults_file: Option<String>,
pub json: bool,
pub verbose: bool,
pub page_size: Option<u32>,
pub depth: Option<u32>,
pub mmap: bool,
}Expand description
Options for the inno validate subcommand.
Fields§
§datadir: StringPath to MySQL data directory.
database: Option<String>MySQL database name to filter.
table: Option<String>Deep-validate a specific table (format: db.table or db/table).
host: Option<String>MySQL host for live queries.
port: Option<u16>MySQL port for live queries.
user: Option<String>MySQL user for live queries.
password: Option<String>MySQL password for live queries.
defaults_file: Option<String>Path to MySQL defaults file.
json: boolEmit output as JSON.
verbose: boolShow detailed output.
page_size: Option<u32>Override page size.
depth: Option<u32>Maximum directory recursion depth.
mmap: boolUse memory-mapped I/O.
Auto Trait Implementations§
impl Freeze for ValidateOptions
impl RefUnwindSafe for ValidateOptions
impl Send for ValidateOptions
impl Sync for ValidateOptions
impl Unpin for ValidateOptions
impl UnsafeUnpin for ValidateOptions
impl UnwindSafe for ValidateOptions
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more