pub fn parse_hyphenated<'d>(
    src: &[u8],
    dst: Out<'d, [u8; 16]>
) -> Result<&'d mut [u8; 16], Error>
Expand description

Parses a hyphenated UUID from arbitrary bytes.

Errors

This function returns Err if:

  • The length of src doesn’t match the “hyphenated” format.
  • The content of src is invalid.