Function array_bytes::hex_n_into

source ·
pub fn hex_n_into<T, const N: usize>(hex: &str) -> ArrayBytesResult<T>where
    T: From<[u8; N]>,
Expand description

Try to convert Hex to T directly, where T: From<[u8; N]>.

Examples

#[derive(Debug, PartialEq)]
struct LJF([u8; 17]);
impl From<[u8; 17]> for LJF {
	fn from(array: [u8; 17]) -> Self {
		Self(array)
	}
}

assert_eq!(
	array_bytes::hex_n_into::<LJF, 17>("0x4c6f7665204a616e6520466f7265766572"),
	Ok(LJF(*b"Love Jane Forever"))
);