pub enum RSEuclideanError {
BufferError(BufferError),
PolynomialError(PolynomialError),
}Variants§
BufferError(BufferError)
PolynomialError(PolynomialError)
Trait Implementations§
Source§impl Clone for RSEuclideanError
impl Clone for RSEuclideanError
Source§fn clone(&self) -> RSEuclideanError
fn clone(&self) -> RSEuclideanError
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 RSEuclideanError
impl Debug for RSEuclideanError
Source§impl Display for RSEuclideanError
impl Display for RSEuclideanError
Source§impl Error for RSEuclideanError
impl Error for RSEuclideanError
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 From<BufferError> for RSEuclideanError
impl From<BufferError> for RSEuclideanError
Source§fn from(source: BufferError) -> Self
fn from(source: BufferError) -> Self
Converts to this type from the input type.
Source§impl From<PolynomialError> for RSEuclideanError
impl From<PolynomialError> for RSEuclideanError
Source§fn from(source: PolynomialError) -> Self
fn from(source: PolynomialError) -> Self
Converts to this type from the input type.
Source§impl From<RSEuclideanError> for RSComputeErrorsError
impl From<RSEuclideanError> for RSComputeErrorsError
Source§fn from(source: RSEuclideanError) -> Self
fn from(source: RSEuclideanError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RSEuclideanError
impl PartialEq for RSEuclideanError
impl Eq for RSEuclideanError
impl StructuralPartialEq for RSEuclideanError
Auto Trait Implementations§
impl Freeze for RSEuclideanError
impl RefUnwindSafe for RSEuclideanError
impl Send for RSEuclideanError
impl Sync for RSEuclideanError
impl Unpin for RSEuclideanError
impl UnwindSafe for RSEuclideanError
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