Enum bincode::EncodingError
[−]
[src]
pub enum EncodingError {
IoError(IoError),
SizeLimit,
}An error that can be produced during encoding.
Variants
IoError(IoError)An error originating from the underlying Writer.
SizeLimitAn object could not be encoded with the given size limit.
This error is returned before any bytes are written to the
output Writer.
Trait Implementations
impl Debug for EncodingError[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Display for EncodingError[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter. Read more