nash-protocol 0.3.0

state management and cryptography for interacting with nash exchange protocol
Documentation
//! Error types defined for nash_protocol

use thiserror::Error;

/// Expose custom Result type that wraps ProtocolError
pub type Result<T> = std::result::Result<T, ProtocolError>;

/// Wrapper over string that describes error condition
#[derive(Debug, Error, Clone)]
pub struct ProtocolError(pub &'static str);

impl ProtocolError {
    // FIXME: this is a terrible hack. Added temporarily because so much code was already relying
    // upon &'static str creation of protocol errors, but migrate everything to String and allow
    // construction of error messages dynamically
    pub fn coerce_static_from_str(error_str: &str) -> Self {
        let coerce_static = Box::leak(error_str.to_string().into_boxed_str());
        ProtocolError(coerce_static)
    }
}

impl std::fmt::Display for ProtocolError {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        write!(f, "{}", self.0)
    }
}

use bigdecimal::ParseBigDecimalError;

impl From<ParseBigDecimalError> for ProtocolError {
    fn from(_err: ParseBigDecimalError) -> Self {
        ProtocolError("Error converting to BigDecimal")
    }
}