pub enum VecError {
ZeroNorm,
NonFiniteValue,
}Expand description
Erreurs retournées par les opérations sur les vecteurs.
Variants§
ZeroNorm
Norme nulle ou trop proche de zéro : normalisation impossible.
NonFiniteValue
Une valeur NaN ou infinie a été détectée.
Trait Implementations§
impl Copy for VecError
impl Eq for VecError
impl StructuralPartialEq for VecError
Auto Trait Implementations§
impl Freeze for VecError
impl RefUnwindSafe for VecError
impl Send for VecError
impl Sync for VecError
impl Unpin for VecError
impl UnsafeUnpin for VecError
impl UnwindSafe for VecError
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