Enum miden_core::utils::RandomCoinError
pub enum RandomCoinError {
FailedToDrawFieldElement(usize),
FailedToDrawIntegers(usize, usize, usize),
}
Expand description
Defines errors which can occur when drawing values from a random coin.
Variants§
FailedToDrawFieldElement(usize)
A valid element could not be drawn from the field after the specified number of tries.
FailedToDrawIntegers(usize, usize, usize)
The required number of integer values could not be drawn from the specified domain after the specified number of tries.
Trait Implementations§
§impl Debug for RandomCoinError
impl Debug for RandomCoinError
§impl Display for RandomCoinError
impl Display for RandomCoinError
§impl PartialEq<RandomCoinError> for RandomCoinError
impl PartialEq<RandomCoinError> for RandomCoinError
§fn eq(&self, other: &RandomCoinError) -> bool
fn eq(&self, other: &RandomCoinError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.