pub enum HyperbolicError {
OutsideBall {
norm: f32,
curvature: f32,
},
InvalidCurvature(f32),
DimensionMismatch {
expected: usize,
got: usize,
},
NumericalInstability(String),
ShardNotFound(String),
IndexOutOfBounds {
index: usize,
size: usize,
},
EmptyCollection,
SearchFailed(String),
}Expand description
Errors that can occur during hyperbolic operations
Variants§
OutsideBall
Vector is outside the Poincaré ball
InvalidCurvature(f32)
Invalid curvature parameter
DimensionMismatch
Dimension mismatch between vectors
NumericalInstability(String)
Numerical instability detected
ShardNotFound(String)
Shard not found
IndexOutOfBounds
Index out of bounds
EmptyCollection
Empty collection
SearchFailed(String)
Search failed
Trait Implementations§
Source§impl Clone for HyperbolicError
impl Clone for HyperbolicError
Source§fn clone(&self) -> HyperbolicError
fn clone(&self) -> HyperbolicError
Returns a duplicate 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 HyperbolicError
impl Debug for HyperbolicError
Source§impl Display for HyperbolicError
impl Display for HyperbolicError
Source§impl Error for HyperbolicError
impl Error for HyperbolicError
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 HyperbolicError
impl RefUnwindSafe for HyperbolicError
impl Send for HyperbolicError
impl Sync for HyperbolicError
impl Unpin for HyperbolicError
impl UnwindSafe for HyperbolicError
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more