Enum bincode::serde::SerializeError  
            
                [−]
            
        [src]
pub enum SerializeError {
    IoError(IoError),
    SizeLimit,
    Custom(String),
}An error that can be produced during encoding.
Variants
IoError | An error originating from the underlying   | 
SizeLimit | An object could not be encoded with the given size limit. This error is returned before any bytes are written to the
output   | 
Custom | A custom error message  |