#[non_exhaustive]
pub enum LweCiphertextVectorZeroEncryptionError<EngineError: Error> {
NullCiphertextCount,
Engine(EngineError),
}Expand description
An error used with the LweCiphertextVectorZeroEncryptionEngine trait.
This type provides a
LweCiphertextVectorZeroEncryptionError::perform_generic_checks
function that does error checking for the general cases, returning an Ok(())
if the inputs are valid, meaning that engine implementors would then only
need to check for their own specific errors.
Otherwise an Err(..) with the proper error variant is returned.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
NullCiphertextCount
Generic error: The ciphertext count must be greater than zero.
Engine(EngineError)
Specific error to the implementing engine.
Implementations
sourceimpl<EngineError: Error> LweCiphertextVectorZeroEncryptionError<EngineError>
impl<EngineError: Error> LweCiphertextVectorZeroEncryptionError<EngineError>
sourcepub fn perform_generic_checks(count: LweCiphertextCount) -> Result<(), Self>
pub fn perform_generic_checks(count: LweCiphertextCount) -> Result<(), Self>
Validates the inputs
Trait Implementations
sourceimpl<EngineError: Clone + Error> Clone for LweCiphertextVectorZeroEncryptionError<EngineError>
impl<EngineError: Clone + Error> Clone for LweCiphertextVectorZeroEncryptionError<EngineError>
sourcefn clone(&self) -> LweCiphertextVectorZeroEncryptionError<EngineError>
fn clone(&self) -> LweCiphertextVectorZeroEncryptionError<EngineError>
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl<EngineError: Debug + Error> Debug for LweCiphertextVectorZeroEncryptionError<EngineError>
impl<EngineError: Debug + Error> Debug for LweCiphertextVectorZeroEncryptionError<EngineError>
sourceimpl<EngineError: Error> Display for LweCiphertextVectorZeroEncryptionError<EngineError>
impl<EngineError: Error> Display for LweCiphertextVectorZeroEncryptionError<EngineError>
sourceimpl<EngineError: Error> Error for LweCiphertextVectorZeroEncryptionError<EngineError>
impl<EngineError: Error> Error for LweCiphertextVectorZeroEncryptionError<EngineError>
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl<EngineError: PartialEq + Error> PartialEq<LweCiphertextVectorZeroEncryptionError<EngineError>> for LweCiphertextVectorZeroEncryptionError<EngineError>
impl<EngineError: PartialEq + Error> PartialEq<LweCiphertextVectorZeroEncryptionError<EngineError>> for LweCiphertextVectorZeroEncryptionError<EngineError>
sourcefn eq(&self, other: &LweCiphertextVectorZeroEncryptionError<EngineError>) -> bool
fn eq(&self, other: &LweCiphertextVectorZeroEncryptionError<EngineError>) -> bool
impl<EngineError: Eq + Error> Eq for LweCiphertextVectorZeroEncryptionError<EngineError>
impl<EngineError: Error> StructuralEq for LweCiphertextVectorZeroEncryptionError<EngineError>
impl<EngineError: Error> StructuralPartialEq for LweCiphertextVectorZeroEncryptionError<EngineError>
Auto Trait Implementations
impl<EngineError> RefUnwindSafe for LweCiphertextVectorZeroEncryptionError<EngineError>where
EngineError: RefUnwindSafe,
impl<EngineError> Send for LweCiphertextVectorZeroEncryptionError<EngineError>where
EngineError: Send,
impl<EngineError> Sync for LweCiphertextVectorZeroEncryptionError<EngineError>where
EngineError: Sync,
impl<EngineError> Unpin for LweCiphertextVectorZeroEncryptionError<EngineError>where
EngineError: Unpin,
impl<EngineError> UnwindSafe for LweCiphertextVectorZeroEncryptionError<EngineError>where
EngineError: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more