1
2
3
4
5
6
use crate::MemoryState;
pub struct Error<T> {
    pub state: MemoryState,
    pub input: T,
    pub retry: bool,
}