use failure::Fail;
#[derive(Clone, Eq, PartialEq, Debug, Fail)]
pub enum Error {
#[fail(display = "Not enough signature shares")]
NotEnoughShares,
#[fail(display = "Signature shares contain a duplicated index")]
DuplicateEntry,
#[fail(display = "The degree is too high for the coefficients to be indexed by usize.")]
DegreeTooHigh,
}
pub type Result<T> = ::std::result::Result<T, Error>;
#[cfg(test)]
mod tests {
use super::Error;
fn is_send_and_sync<T: Send + Sync>(_: T) {}
#[test]
fn errors_are_send_and_sync() {
is_send_and_sync(Error::NotEnoughShares);
}
}
#[derive(Clone, Eq, PartialEq, Debug, Fail)]
pub enum FromBytesError {
#[fail(display = "Invalid representation.")]
Invalid,
}
pub type FromBytesResult<T> = ::std::result::Result<T, FromBytesError>;