pub enum IntegrationError {
InitialTimeNotLessThanFinalTime,
LengthTimeLessThanTwo,
}
Expand description
Possible errors encountered when integrating.
Variants§
Trait Implementations§
Source§impl Debug for IntegrationError
impl Debug for IntegrationError
Source§impl Display for IntegrationError
impl Display for IntegrationError
Source§impl From<IntegrationError> for OptimizeError
impl From<IntegrationError> for OptimizeError
Source§fn from(_error: IntegrationError) -> Self
fn from(_error: IntegrationError) -> Self
Converts to this type from the input type.
Source§impl From<OptimizeError> for IntegrationError
impl From<OptimizeError> for IntegrationError
Source§fn from(_error: OptimizeError) -> Self
fn from(_error: OptimizeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IntegrationError
impl RefUnwindSafe for IntegrationError
impl Send for IntegrationError
impl Sync for IntegrationError
impl Unpin for IntegrationError
impl UnwindSafe for IntegrationError
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