pub enum PARFlowError {
SerdeError(Error),
FrontendError(FrontendError),
IntermedToInputError(IntermedToInputError),
OutputWriteError(Error),
PARIterationsExceeded,
PARSanityCheckFailed(PARSanityResult),
}
Variants§
SerdeError(Error)
FrontendError(FrontendError)
IntermedToInputError(IntermedToInputError)
OutputWriteError(Error)
PARIterationsExceeded
PARSanityCheckFailed(PARSanityResult)
Trait Implementations§
Source§impl Debug for PARFlowError
impl Debug for PARFlowError
Source§impl Display for PARFlowError
impl Display for PARFlowError
Source§impl Error for PARFlowError
impl Error for PARFlowError
Source§fn description(&self) -> &'static str
fn description(&self) -> &'static str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
Source§impl From<Error> for PARFlowError
impl From<Error> for PARFlowError
Source§impl From<Error> for PARFlowError
impl From<Error> for PARFlowError
Source§impl From<FrontendError> for PARFlowError
impl From<FrontendError> for PARFlowError
Source§fn from(inner: FrontendError) -> Self
fn from(inner: FrontendError) -> Self
Converts to this type from the input type.
Source§impl From<IntermedToInputError> for PARFlowError
impl From<IntermedToInputError> for PARFlowError
Source§fn from(inner: IntermedToInputError) -> Self
fn from(inner: IntermedToInputError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PARFlowError
impl !RefUnwindSafe for PARFlowError
impl Send for PARFlowError
impl Sync for PARFlowError
impl Unpin for PARFlowError
impl !UnwindSafe for PARFlowError
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