pub trait Label: AsRef<str> + FromStr<Err = Self::Error> { type Error: From<Error>; }
Labels for e.g. cryptographic algorithms.
Receives a blanket impl of Decode and Encode.
Decode
Encode
Type returned in the event of an encoding error.