Strategy

Trait Strategy 

Source
pub trait Strategy:
    Send
    + Sync
    + 'static {
    // Required method
    fn next(&self, len: usize) -> usize;
}
Expand description

Wildcard strategy definition.

Required Methods§

Source

fn next(&self, len: usize) -> usize

Implementors§