pub struct TableLookupError {}
Expand description
An error indicating that the DecryptionTable
did not contain a requested
discrete logarithm.
Users of the library should go to great effort to guarantee that this never happens, by bounding the maximum number of ciphertexts aggregated at once relative to the size of the decryption table.
Trait Implementations§
Source§impl Debug for TableLookupError
impl Debug for TableLookupError
Source§impl Display for TableLookupError
impl Display for TableLookupError
Source§impl Error for TableLookupError
impl Error for TableLookupError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for TableLookupError
impl RefUnwindSafe for TableLookupError
impl Send for TableLookupError
impl Sync for TableLookupError
impl Unpin for TableLookupError
impl UnwindSafe for TableLookupError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more