pub struct SeedPolicy {
pub seed_len: usize,
pub seed_interval: usize,
pub max_hits: usize,
pub seed_type: SeedType,
pub constraints: [Constraint; 3],
}Expand description
Seed policy configuration
Fields§
§seed_len: usizeSeed length
seed_interval: usizeSeed spacing interval
max_hits: usizeMaximum seed hits per seed
seed_type: SeedTypeSeed type
constraints: [Constraint; 3]Constraints per zone
Implementations§
Source§impl SeedPolicy
impl SeedPolicy
Trait Implementations§
Source§impl Clone for SeedPolicy
impl Clone for SeedPolicy
Source§fn clone(&self) -> SeedPolicy
fn clone(&self) -> SeedPolicy
Returns a duplicate of the value. Read more
1.0.0 · 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 SeedPolicy
impl Debug for SeedPolicy
Auto Trait Implementations§
impl Freeze for SeedPolicy
impl RefUnwindSafe for SeedPolicy
impl Send for SeedPolicy
impl Sync for SeedPolicy
impl Unpin for SeedPolicy
impl UnsafeUnpin for SeedPolicy
impl UnwindSafe for SeedPolicy
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