Enum snarkvm_utilities::errors::serialization::SerializationError [−][src]
pub enum SerializationError {
NotEnoughSpace,
InvalidData,
UnexpectedFlags,
IoError(Error),
BincodeError(Error),
}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.
During serialization, we countered an I/O error.
Tuple Fields of IoError
0: ErrorDuring serialization with bincode, we encountered a serialization issue
Tuple Fields of BincodeError
0: ErrorTrait Implementations
Performs the conversion.