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§
source§impl Debug for DemesForwardError
impl Debug for DemesForwardError
source§impl Display for DemesForwardError
impl Display for DemesForwardError
source§impl Error for DemesForwardError
impl Error for DemesForwardError
1.30.0 · source§fn 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 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<DemesError> for DemesForwardError
impl From<DemesError> for DemesForwardError
source§fn from(error: DemesError) -> Self
fn from(error: DemesError) -> Self
Converts to this type from the input type.