Skip to main content

VerificationError

Enum VerificationError 

Source
pub enum VerificationError {
Show 16 variants PointCountMismatch { expected: usize, actual: usize, }, EdgeIndexOutOfBounds { edge: (usize, usize), point_count: usize, }, SelfEdge { index: usize, }, EdgeSetMismatch { expected: Vec<(usize, usize)>, actual: Vec<(usize, usize)>, }, PointMismatch { index: usize, }, QuantizedProjectionMismatch { index: usize, expected: [i64; 2], actual: [i64; 2], }, AlgebraicKeyDimensionMismatch { expected: usize, actual: usize, }, InvalidAlgebraicKeyDenominator { denominator: i64, }, TranslationNotNormOne { index: usize, }, CandidateOutsideWindow { index: usize, radius: String, max_embedding_norm: String, }, ProjectionMismatch { index: usize, }, CandidatePathMismatch { index: usize, }, CandidatePathTranslationOutOfBounds { candidate_index: usize, translation_index: usize, translation_count: usize, }, EdgeProvenanceMismatch { edge_index: usize, }, InvalidConstruction { reason: String, }, CertificateSchemaMismatch { reason: String, },
}
Expand description

Errors that can occur while verifying a construction certificate.

Variants§

§

PointCountMismatch

The certificate stores a different number of points than the construction claims.

Fields

§expected: usize
§actual: usize
§

EdgeIndexOutOfBounds

A claimed unit-distance edge refers to a point index outside the point set.

Fields

§edge: (usize, usize)
§point_count: usize
§

SelfEdge

A claimed unit-distance edge connects a point to itself.

Fields

§index: usize
§

EdgeSetMismatch

The claimed edge set does not match the independently recomputed edge set.

Fields

§expected: Vec<(usize, usize)>
§actual: Vec<(usize, usize)>
§

PointMismatch

A stored point does not match the deterministic construction.

Fields

§index: usize
§

QuantizedProjectionMismatch

A stored projection key does not match the point it claims to certify.

Fields

§index: usize
§expected: [i64; 2]
§actual: [i64; 2]
§

AlgebraicKeyDimensionMismatch

An algebraic certificate key has the wrong field dimension.

Fields

§expected: usize
§actual: usize
§

InvalidAlgebraicKeyDenominator

An algebraic certificate key has a non-positive denominator.

Fields

§denominator: i64
§

TranslationNotNormOne

A claimed norm-one translation does not verify in the supported native model.

Fields

§index: usize
§

CandidateOutsideWindow

A certified candidate is outside the claimed polydisk window.

Fields

§index: usize
§radius: String
§max_embedding_norm: String
§

ProjectionMismatch

A stored projection point does not match the certified algebraic candidate.

Fields

§index: usize
§

CandidatePathMismatch

A certified candidate path does not replay to the stored algebraic key.

Fields

§index: usize
§

CandidatePathTranslationOutOfBounds

A candidate path references a missing translation.

Fields

§candidate_index: usize
§translation_index: usize
§translation_count: usize
§

EdgeProvenanceMismatch

A certified construction edge is not explained by a norm-one translation.

Fields

§edge_index: usize
§

InvalidConstruction

The certificate contains invalid construction metadata.

Fields

§reason: String
§

CertificateSchemaMismatch

The serialized certificate does not match the supported schema.

Fields

§reason: String

Trait Implementations§

Source§

impl Clone for VerificationError

Source§

fn clone(&self) -> VerificationError

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for VerificationError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for VerificationError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for VerificationError

1.30.0 · Source§

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

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl PartialEq for VerificationError

Source§

fn eq(&self, other: &VerificationError) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for VerificationError

Source§

impl StructuralPartialEq for VerificationError

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.