Enum demes_forward::DemesForwardError
source · [−]pub enum DemesForwardError {
DemesError(DemesError),
TimeError(String),
InvalidDemeSize(DemeSize),
InternalError(String),
}Expand description
Error type.
Variants
DemesError(DemesError)
Stores a demes::DemesError.
TimeError(String)
Errors related to time. Will be returned if invalid time values occur after converting time to generations.
InvalidDemeSize(DemeSize)
Errors related to invalid deme sizes arising during application of size change functions.
InternalError(String)
Errors related to invalid internal states. In general, this error indicates a bug that should be reported.
Trait Implementations
sourceimpl Debug for DemesForwardError
impl Debug for DemesForwardError
sourceimpl Display for DemesForwardError
impl Display for DemesForwardError
sourceimpl Error for DemesForwardError
impl Error for DemesForwardError
1.30.0 · 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
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<DemesError> for DemesForwardError
impl From<DemesError> for DemesForwardError
sourcefn from(error: DemesError) -> Self
fn from(error: DemesError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for DemesForwardError
impl Send for DemesForwardError
impl Sync for DemesForwardError
impl Unpin for DemesForwardError
impl !UnwindSafe for DemesForwardError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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