pub struct TimelineOptions {Show 13 fields
pub redo_log: Option<String>,
pub undo_file: Option<String>,
pub binlog: Option<String>,
pub file: Option<String>,
pub datadir: Option<String>,
pub space_id: Option<u32>,
pub page: Option<u64>,
pub table: Option<String>,
pub limit: Option<usize>,
pub verbose: bool,
pub json: bool,
pub page_size: Option<u32>,
pub keyring: Option<String>,
}Expand description
Options for the inno timeline subcommand.
Fields§
§redo_log: Option<String>§undo_file: Option<String>§binlog: Option<String>§file: Option<String>§datadir: Option<String>§space_id: Option<u32>§page: Option<u64>§table: Option<String>§limit: Option<usize>§verbose: bool§json: bool§page_size: Option<u32>§keyring: Option<String>Auto Trait Implementations§
impl Freeze for TimelineOptions
impl RefUnwindSafe for TimelineOptions
impl Send for TimelineOptions
impl Sync for TimelineOptions
impl Unpin for TimelineOptions
impl UnsafeUnpin for TimelineOptions
impl UnwindSafe for TimelineOptions
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