pub struct AnnotateTopologyOpts {
pub cutoff: f64,
pub graph: String,
pub hops: u32,
pub seams: Option<PathBuf>,
}Expand description
Per-corpus fingerprint options. Cutoff is required; graph defaults to
cutoff and hops defaults to 2.
Fields§
§cutoff: f64§graph: String§hops: u32§seams: Option<PathBuf>Implementations§
Trait Implementations§
Source§impl Clone for AnnotateTopologyOpts
impl Clone for AnnotateTopologyOpts
Source§fn clone(&self) -> AnnotateTopologyOpts
fn clone(&self) -> AnnotateTopologyOpts
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 moreAuto Trait Implementations§
impl Freeze for AnnotateTopologyOpts
impl RefUnwindSafe for AnnotateTopologyOpts
impl Send for AnnotateTopologyOpts
impl Sync for AnnotateTopologyOpts
impl Unpin for AnnotateTopologyOpts
impl UnsafeUnpin for AnnotateTopologyOpts
impl UnwindSafe for AnnotateTopologyOpts
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