Enum parse_monitors::error::Error
source · [−]pub enum Error {
Monitors(MonitorsError),
Pressure(PressureError),
DomeSeeing(DomeSeeingError),
CFD(CfdError),
Any(Box<dyn Error>),
}Variants
Monitors(MonitorsError)
Pressure(PressureError)
DomeSeeing(DomeSeeingError)
CFD(CfdError)
Any(Box<dyn Error>)
Trait Implementations
sourceimpl Error for Error
impl Error for Error
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<DomeSeeingError> for Error
impl From<DomeSeeingError> for Error
sourcefn from(source: DomeSeeingError) -> Self
fn from(source: DomeSeeingError) -> Self
Converts to this type from the input type.
sourceimpl From<MonitorsError> for Error
impl From<MonitorsError> for Error
sourcefn from(source: MonitorsError) -> Self
fn from(source: MonitorsError) -> Self
Converts to this type from the input type.
sourceimpl From<PressureError> for Error
impl From<PressureError> for Error
sourcefn from(source: PressureError) -> Self
fn from(source: PressureError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for Error
impl !Send for Error
impl !Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for T
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
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 more
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).
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.
fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts self to the equivalent element of its superset.