pub trait CalcableError {
    fn unimplemented(operation: &'static str) -> Self;
    fn history_out_of_bounds(
        kind: HistoryIndexKind,
        requested_index: usize,
        history_len: usize
    ) -> Self; }
Expand description

A CalcableError can always have certain variants.

Required Methods

Implementors