pub struct ParseOptions {
pub file: String,
pub page: Option<u64>,
pub verbose: bool,
pub no_empty: bool,
pub page_size: Option<u32>,
pub json: bool,
pub csv: bool,
pub keyring: Option<String>,
pub threads: usize,
pub mmap: bool,
pub streaming: bool,
}Expand description
Options for the parse subcommand.
Fields§
§file: String§page: Option<u64>§verbose: bool§no_empty: bool§page_size: Option<u32>§json: bool§csv: boolOutput as CSV.
keyring: Option<String>§threads: usizeNumber of threads for parallel processing (0 = auto-detect).
mmap: boolUse memory-mapped I/O for file access.
streaming: boolStream results incrementally for lower memory usage.
Auto Trait Implementations§
impl Freeze for ParseOptions
impl RefUnwindSafe for ParseOptions
impl Send for ParseOptions
impl Sync for ParseOptions
impl Unpin for ParseOptions
impl UnsafeUnpin for ParseOptions
impl UnwindSafe for ParseOptions
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