pub trait Strategy: Send + Sync + 'static { // Required method fn next(&self, len: usize) -> usize; }
Wildcard strategy definition.