pub struct CliParams {Show 16 fields
pub mode: String,
pub path: PathBuf,
pub path_ref_sketch: PathBuf,
pub path_query_sketch: PathBuf,
pub out_file: PathBuf,
pub ksize: u8,
pub seed: u64,
pub sketch_method: String,
pub canonical: bool,
pub device: String,
pub scaled: u64,
pub hv_d: usize,
pub hv_quant_scale: f32,
pub ani_threshold: f32,
pub if_compressed: bool,
pub threads: u8,
}Fields§
§mode: String§path: PathBuf§path_ref_sketch: PathBuf§path_query_sketch: PathBuf§out_file: PathBuf§ksize: u8§seed: u64§sketch_method: String§canonical: bool§device: String§scaled: u64§hv_d: usize§hv_quant_scale: f32§ani_threshold: f32§if_compressed: bool§threads: u8Auto Trait Implementations§
impl Freeze for CliParams
impl RefUnwindSafe for CliParams
impl Send for CliParams
impl Sync for CliParams
impl Unpin for CliParams
impl UnwindSafe for CliParams
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