pub enum RangeProofError {
InvalidBlinding(BlindingFactor),
BulletproofsAbsent,
}
Expand description
Errors verifying range proofs.
Variants§
InvalidBlinding(BlindingFactor)
invalid blinding factor {0}.
BulletproofsAbsent
bulletproofs verification is not implemented in RGB Core v0.10. Please update your software and try again, or ask your software producer to use latest RGB release.
Trait Implementations§
Source§impl Clone for RangeProofError
impl Clone for RangeProofError
Source§fn clone(&self) -> RangeProofError
fn clone(&self) -> RangeProofError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RangeProofError
impl Debug for RangeProofError
Source§impl Display for RangeProofError
impl Display for RangeProofError
Source§impl Error for RangeProofError
impl Error for RangeProofError
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()
Source§impl PartialEq for RangeProofError
impl PartialEq for RangeProofError
impl Copy for RangeProofError
impl Eq for RangeProofError
impl StructuralPartialEq for RangeProofError
Auto Trait Implementations§
impl Freeze for RangeProofError
impl RefUnwindSafe for RangeProofError
impl Send for RangeProofError
impl Sync for RangeProofError
impl Unpin for RangeProofError
impl UnwindSafe for RangeProofError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.