1 2 3 4 5 6 7
/// Failed to sample a token from the data array. #[derive(Debug, Eq, PartialEq, thiserror::Error)] pub enum TokenSamplingError { /// The sampler did not select any token. #[error("No token was selected by the sampler")] NoTokenSelected, }