pub struct InfoOptions {Show 14 fields
pub ibdata: bool,
pub lsn_check: bool,
pub datadir: Option<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 tablespace_map: bool,
pub json: bool,
pub page_size: Option<u32>,
pub mmap: bool,
}Expand description
Options for the inno info subcommand.
Fields§
§ibdata: boolInspect the ibdata1 page 0 header.
lsn_check: boolCompare ibdata1 and redo log checkpoint LSNs.
datadir: Option<String>MySQL data directory path (defaults to /var/lib/mysql).
database: Option<String>Database name (for MySQL table/index queries, requires mysql feature).
table: Option<String>Table name (for MySQL table/index queries, requires mysql feature).
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 a MySQL defaults file (.my.cnf).
tablespace_map: boolScan data directory and produce a tablespace ID mapping.
json: boolEmit output as JSON.
page_size: Option<u32>Override the auto-detected page size.
mmap: boolUse memory-mapped I/O for file access.
Auto Trait Implementations§
impl Freeze for InfoOptions
impl RefUnwindSafe for InfoOptions
impl Send for InfoOptions
impl Sync for InfoOptions
impl Unpin for InfoOptions
impl UnsafeUnpin for InfoOptions
impl UnwindSafe for InfoOptions
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