Enum ark_serialize::SerializationError [−][src]
pub enum SerializationError { NotEnoughSpace, InvalidData, UnexpectedFlags, IoError(Error), }
Expand description
This is an error that could occur during serialization
Variants
During serialization, we didn’t have enough space to write extra info.
During serialization, the data was invalid.
During serialization, non-empty flags were given where none were expected.
IoError(Error)
During serialization, we countered an I/O error.
Trait Implementations
Performs the conversion.