//! # Results and Errors for the compute module //! //! This module defines the errors and results that can be processed from any given term. //// ATTRIBUTES //////////////////////////////////////////////////////////////////////////////////// // we want docs #![warn(missing_docs)] #![warn(rustdoc::missing_crate_level_docs)] // we want Debug everywhere. #![warn(missing_debug_implementations)] // enable clippy's extra lints, the pedantic version #![warn(clippy::pedantic)] //// IMPORTS /////////////////////////////////////////////////////////////////////////////////////// use num_traits; //// TYPES ///////////////////////////////////////////////////////////////////////////////////////// pub type Result = std::result::Result; //// CONSTANTS ///////////////////////////////////////////////////////////////////////////////////// //// STATICS /////////////////////////////////////////////////////////////////////////////////////// //// MACROS //////////////////////////////////////////////////////////////////////////////////////// //// ENUMS ///////////////////////////////////////////////////////////////////////////////////////// #[non_exhaustive] #[derive(Debug)] pub enum Error { SyntaxError } //////////////////////////////////////////////////////////////////////////////////////////////////// #[derive(Debug)] pub enum ComputeResult { Variable(VarResult), Numerical(NumericResult), Complex(ComplexResult), } #[non_exhaustive] #[derive(Debug)] pub enum NumericResult { Signed(i128), Unsigned(u128), Float(f64) } //// STRUCTS /////////////////////////////////////////////////////////////////////////////////////// #[derive(Debug)] pub struct VarResult { } #[derive(Debug)] pub struct ComplexResult { } //// IMPLEMENTATION //////////////////////////////////////////////////////////////////////////////// impl From for NumericResult where u128: TryFrom, u128: TryFrom { fn from(value: T) -> Self { if T::min_value().is_zero() { // unsigned data types // `u128` is the largest unsigned datatype, any other type will fit. NumericResult::Unsigned(value.to_u128().unwrap()) } else { // signed data types // `i128` is the largest unsigned datatype, any other type will fit. NumericResult::Signed(value.to_i128().unwrap()) } } } impl From for ComputeResult where u128: TryFrom, u128: TryFrom { fn from(value: T) -> Self { NumericResult::from(value).into() } } impl From for ComputeResult { fn from(value: NumericResult) -> Self { ComputeResult::Numerical(value) } } //// PUBLIC FUNCTIONS ////////////////////////////////////////////////////////////////////////////// //// PRIVATE FUNCTIONS ///////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////