Crate bcd_convert

Source

Structs§

BcdNumber
BcdNumber is a representation of a numeric value encoded in BCD (Binary Coded Decimal) form. Each byte holds two decimal digits: the upper nibble (4 bits) for the higher digit and the lower nibble (4 bits) for the lower digit. For example, 0x12 represents the digits “1” and “2”.

Enums§

BcdError
An error type indicating issues that occur during BCD parsing or conversion.