pub struct SketchDist {
pub path_ref_sketch: PathBuf,
pub path_query_sketch: PathBuf,
pub out_file: PathBuf,
pub ksize: u8,
pub hv_d: usize,
pub ani_threshold: f32,
pub file_ani: Vec<((String, String), f32)>,
}
Fields§
§path_ref_sketch: PathBuf
§path_query_sketch: PathBuf
§out_file: PathBuf
§ksize: u8
§hv_d: usize
§ani_threshold: f32
§file_ani: Vec<((String, String), f32)>
Implementations§
Source§impl SketchDist
impl SketchDist
pub fn new(params: &CliParams) -> SketchDist
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SketchDist
impl RefUnwindSafe for SketchDist
impl Send for SketchDist
impl Sync for SketchDist
impl Unpin for SketchDist
impl UnwindSafe for SketchDist
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