pub type TryReadError<Src, Dst>where
Dst: TryFromBytes + ?Sized, = ConvertError<!, SizeError<Src, Dst>, ValidityError<Src, Dst>>;Expand description
The error type of fallible read-conversions.
Fallible read-conversions, like TryFromBytes::try_read_from_bytes may
emit size and validity errors, but not
alignment errors.
Aliased Type§
pub enum TryReadError<Src, Dst>where
Dst: TryFromBytes + ?Sized,{
Alignment(!),
Size(SizeError<Src, Dst>),
Validity(ValidityError<Src, Dst>),
}