pub struct TopoPathConfig {
pub max_len: usize,
pub nbits: usize,
}Expand description
Configuration for topological path fingerprints.
Fields§
§max_len: usizeMaximum number of atoms in a path (default: 7).
nbits: usizeBitvector size in bits (default: 2048).
Trait Implementations§
Source§impl Clone for TopoPathConfig
impl Clone for TopoPathConfig
Source§fn clone(&self) -> TopoPathConfig
fn clone(&self) -> TopoPathConfig
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 TopoPathConfig
impl Debug for TopoPathConfig
Auto Trait Implementations§
impl Freeze for TopoPathConfig
impl RefUnwindSafe for TopoPathConfig
impl Send for TopoPathConfig
impl Sync for TopoPathConfig
impl Unpin for TopoPathConfig
impl UnsafeUnpin for TopoPathConfig
impl UnwindSafe for TopoPathConfig
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