serlp 0.3.1

A serde serializer and deserializer for RLP (Recursive Length Prefix) encoding.
Documentation
use std;
use std::fmt::{self, Display};
use serde::{de, ser};

pub type Result<T> = std::result::Result<T, Error>;

// This is a bare-bones implementation. A real library would provide additional
// information in its error type, for example the line and column at which the
// error occurred, the byte offset into the input, or the current key being
// processed.
#[derive(Clone, Debug, PartialEq)]
pub enum Error {
    // One or more variants that can be created by data structures through the
    // `ser::Error` and `de::Error` traits. For example the Serialize impl for
    // Mutex<T> might return an error because the mutex is poisoned, or the
    // Deserialize impl for a struct may return an error because a required
    // field is missing.
    Message(String),
    UnknownSeqLength,
    TypeNotSupported,
    MalformedData
}

impl ser::Error for Error {
    fn custom<T: Display>(msg: T) -> Self {
        Error::Message(msg.to_string())
    }
}

impl de::Error for Error {
    fn custom<T: Display>(msg: T) -> Self {
        Error::Message(msg.to_string())
    }
}

impl Display for Error {
    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
        match self {
            Error::Message(msg) => formatter.write_str(msg),
            Error::TypeNotSupported => formatter.write_str("Type is not supported as it not documented in the yellow paper."),
            Error::UnknownSeqLength => formatter.write_str("Sequence lenght must be known at compile time."),
            Error::MalformedData => formatter.write_str("RLP encoded data is malformed.")
        }
    }
}

impl std::error::Error for Error {}