Enum bonsaidb::core::transmog_pot::pot::Error [−]
pub enum Error {
}
Expand description
All errors that Pot may return.
Variants
NotAPot
Payload is not a Pot payload.
IncompatibleVersion
Data was written with an incompatible version.
Message(String)
Tuple Fields
0: String
A generic error occurred.
TrailingBytes
Extra data appeared at the end of the input.
Eof
Expected more data but encountered the end of the input.
ImpreciseCastWouldLoseData
A numerical value could not be handled without losing precision or truncation.
Io(Error)
Tuple Fields
0: Error
An error occurred from io.
SequenceSizeMustBeKnown
A sequence of unknown size cannot be serialized.
InvalidUtf8(String)
Tuple Fields
0: String
String data contained invalid utf-8 characters.
InvalidKind(u8)
Tuple Fields
0: u8
An unknown kind was encountered. Generally a sign that something else has been parsed incorrectly.
UnexpectedKind(Kind, Kind)
Encountered an unexpected atom kind.
UnknownSymbol(u64)
Tuple Fields
0: u64
A requested symbol id was not found.
InvalidAtomHeader
An atom header was incorrectly formatted.
TooManyBytesRead
The amount of data read exceeds the configured maximum number of bytes.
Trait Implementations
Raised when there is general error when deserializing a type. Read more
Raised when a Deserialize
receives a type different from what it was
expecting. Read more
Raised when a Deserialize
receives a value of the right type but that
is wrong for some other reason. Read more
Raised when deserializing a sequence or map and the input data contains too many or too few elements. Read more
Raised when a Deserialize
enum type received a variant with an
unrecognized name. Read more
Raised when a Deserialize
struct type received a field with an
unrecognized name. Read more
Raised when a Deserialize
struct type expected to receive a required
field with a particular name but that field was not present in the
input. Read more
Raised when a Deserialize
struct type received more than one of the
same field. Read more
Performs the conversion.
Performs the conversion.
impl From<FromUtf8Error> for Error
impl From<FromUtf8Error> for Error
pub fn from(err: FromUtf8Error) -> Error
pub fn from(err: FromUtf8Error) -> Error
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for Error
impl !UnwindSafe for Error
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more