Enum maidsafe_utilities::serialisation::SerialisationError[]

pub enum SerialisationError {
    Serialise(ErrorKind),
    Deserialise(ErrorKind),
    DeserialiseExtraBytes,
}

Serialisation error.

Variants

Error during serialisation (encoding).

Bincode error during deserialisation (decoding).

Not all input bytes were consumed when deserialising (decoding).

Trait Implementations

impl Debug for SerialisationError
[src]

Formats the value using the given formatter. Read more

impl Display for SerialisationError

Formats the value using the given formatter. Read more

impl Error for SerialisationError

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations