Function bytes_from_radix_string

Source
pub fn bytes_from_radix_string(text: &str, radix: u32) -> Result<Vec<u8>>
Expand description

Convert a radix string into a vector of bytes.

Leading and trailing whitespaces will result in an error. Conversion happens by 2 characters per byte.