/// Object that samples `sample_size` set of items from
/// the list provided.
pubtraitSampler{typeSamplingType;typeError:crate::traits::error::Error;fnsample(&mutself,
items:Vec<Self::SamplingType>,
sample_size:u64,
)->Result<Vec<Self::SamplingType>, Self::Error>;}