cubek-interpolate 0.2.0

CubeK: Interpolation
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

#[derive(Error, Debug, Clone)]
/// This error should be caught and properly handled.
pub enum InterpolateError {
    /// Default error for unimplemented modes or other generic errors.
    #[error("An error occurred during interpolation.")]
    DefaultError,
}