Enum bincode::rustc_serialize::EncodingError
[−]
[src]
pub enum EncodingError { IoError(IoError), SizeLimit, }
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 |
Trait Implementations
impl Display for EncodingError
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[−]
Formats the value using the given formatter.
impl Error for EncodingError
[src]
fn description(&self) -> &str
[−]
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
[−]
The lower-level cause of this error, if any.