pub struct Map4Config {
pub max_radius: usize,
pub n_permutations: usize,
}Expand description
MAP4 fingerprint configuration.
Fields§
§max_radius: usizeMaximum circular environment radius (default 2, like ECFP4)
n_permutations: usizeNumber of MinHash permutations (default 1024)
Trait Implementations§
Source§impl Clone for Map4Config
impl Clone for Map4Config
Source§fn clone(&self) -> Map4Config
fn clone(&self) -> Map4Config
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Map4Config
impl Debug for Map4Config
Auto Trait Implementations§
impl Freeze for Map4Config
impl RefUnwindSafe for Map4Config
impl Send for Map4Config
impl Sync for Map4Config
impl Unpin for Map4Config
impl UnsafeUnpin for Map4Config
impl UnwindSafe for Map4Config
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