pub const MISMATCH: u16 = 2;Expand description
002 - MISMATCH
Type or length mismatch.
WDP-6: Type or length mismatch | Type error, size mismatch, format disagreement
§Common Uses
- Type mismatch
- Length mismatch
- Format mismatch
- Checksum mismatch
§Examples
use waddling_sequences::input_validation::MISMATCH;
const ERR_TYPE_MISMATCH: u16 = MISMATCH;
// "Expected type 'String', found 'Integer'"