pub enum AlignError {
InsufficientData(String),
InvalidConfig(String),
NoSolution(String),
NumericalError(String),
FeatureError(String),
MatchingError(String),
EstimationError(String),
SyncError(String),
ColorError(String),
DistortionError(String),
RollingShutterError(String),
Core(OxiError),
}Expand description
Errors that can occur during alignment operations
Variants§
InsufficientData(String)
Insufficient data for alignment
InvalidConfig(String)
Invalid configuration parameter
NoSolution(String)
No solution found
NumericalError(String)
Numerical instability
FeatureError(String)
Feature detection failed
MatchingError(String)
Matching failed
EstimationError(String)
Estimation failed
SyncError(String)
Synchronization failed
ColorError(String)
Color correction failed
DistortionError(String)
Distortion correction failed
RollingShutterError(String)
Rolling shutter correction failed
Core(OxiError)
Generic error from core
Trait Implementations§
Source§impl Debug for AlignError
impl Debug for AlignError
Source§impl Display for AlignError
impl Display for AlignError
Source§impl Error for AlignError
impl Error for AlignError
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 !RefUnwindSafe for AlignError
impl !UnwindSafe for AlignError
impl Freeze for AlignError
impl Send for AlignError
impl Sync for AlignError
impl Unpin for AlignError
impl UnsafeUnpin for AlignError
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> 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 moreSource§impl<E> OxiErrorExt for Ewhere
E: Error,
impl<E> OxiErrorExt for Ewhere
E: Error,
Source§fn with_oxi_context(self, frame: ErrorFrame) -> OxiError
fn with_oxi_context(self, frame: ErrorFrame) -> OxiError
Wraps
self by prepending the frame’s display string as context.Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.