pub enum GenerationCompatificationError {
TracePosPointsToNowhere(TracePos),
TracePosPointsToInvalidState {
position: TracePos,
state: ExecutedState,
},
}Variants§
Implementations§
source§impl GenerationCompatificationError
impl GenerationCompatificationError
pub fn points_to_nowhere(position: TracePos) -> Self
pub fn points_to_invalid_state(position: TracePos, state: ExecutedState) -> Self
Trait Implementations§
source§impl Error for GenerationCompatificationError
impl Error for GenerationCompatificationError
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()