proteus 0.5.0

Proteus is intended to make dynamic transformation of data using serde serializable, deserialize using JSON and a JSON transformation syntax similar to Javascript JSON syntax. It also supports registering custom Actions to be used in the syntax.
Documentation
1
2
3
4
5
6
7
8
use thiserror::Error;

/// This type represents all possible errors that an occur while applying a transformation.
#[derive(Error, Debug)]
pub enum Error {
    #[error("Invalid destination type. {0}")]
    InvalidDestinationType(String),
}