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