Skip to main content

choose_rand/
error.rs

1/// Simple Error returned by possibly failable operations in this crate.
2#[derive(Debug, Clone)]
3pub enum Error {
4    ProbabilitySum,
5}