pub fn decode_payload(
bytes: &[u8],
total_bits: usize,
) -> Result<Descriptor, Error>Expand description
Decode a Descriptor from the canonical payload bit stream (strict:
byte-identical to pre-P0 behavior). Delegates to
decode_payload_with_opts with the default (strict) options.
bytes may be zero-padded; total_bits is the exact payload bit count.