pub trait CustomTypeDecoder { fn decode_value(&self, input: &mut &[u8]) -> Result<Value>; }
Implement this trait to define custom decoding for a type in a scale-info type registry.
scale-info