[−][src]Type Definition bincode::internal::Error
type Error = Box<ErrorKind>;
An error that can be produced during (de)serializing.
type Error = Box<ErrorKind>;
An error that can be produced during (de)serializing.
impl From<Error> for Error
[src]impl Error for Error
[src]impl Error for Error
[src]fn custom<T: Display>(desc: T) -> Error
[src]fn invalid_type(unexp: Unexpected, exp: &dyn Expected) -> Self
[src]fn invalid_value(unexp: Unexpected, exp: &dyn Expected) -> Self
[src]fn invalid_length(len: usize, exp: &dyn Expected) -> Self
[src]fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self
[src]fn unknown_field(field: &str, expected: &'static [&'static str]) -> Self
[src]fn missing_field(field: &'static str) -> Self
[src]fn duplicate_field(field: &'static str) -> Self
[src]