Type Alias TryReadError
pub type TryReadError<Src, Dst: ?Sized + TryFromBytes> = ConvertError<Infallible, SizeError<Src, Dst>, ValidityError<Src, Dst>>;
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.