Trait libafl::state::HasMaxSize[][src]

pub trait HasMaxSize {
    fn max_size(&self) -> usize;
fn set_max_size(&mut self, max_size: usize); }

Interact with the maximum size

Required methods

fn max_size(&self) -> usize[src]

The maximum size hint for items and mutations returned

fn set_max_size(&mut self, max_size: usize)[src]

Sets the maximum size hint for the items and mutations

Loading content...

Implementors

impl<C, F, I, OF, R, SC> HasMaxSize for State<C, F, I, OF, R, SC> where
    C: Corpus<I>,
    I: Input,
    R: Rand,
    F: Feedback<I>,
    SC: Corpus<I>,
    OF: Feedback<I>, 
[src]

fn max_size(&self) -> usize[src]

fn set_max_size(&mut self, max_size: usize)[src]

Loading content...