pub struct LogOptions {
pub file: String,
pub blocks: Option<u64>,
pub no_empty: bool,
pub verbose: bool,
pub json: bool,
}Expand description
Options for the inno log subcommand.
Fields§
§file: StringPath to the redo log file (ib_logfile0, ib_logfile1, or #ib_redo*).
blocks: Option<u64>Limit output to the first N data blocks.
no_empty: boolSkip blocks that contain no redo log data.
verbose: boolShow MLOG record types within each data block.
json: boolEmit output as JSON.
Auto Trait Implementations§
impl Freeze for LogOptions
impl RefUnwindSafe for LogOptions
impl Send for LogOptions
impl Sync for LogOptions
impl Unpin for LogOptions
impl UnwindSafe for LogOptions
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