Function array_bytes::hex2bytes_unchecked[][src]

pub fn hex2bytes_unchecked(hex: impl AsRef<str>) -> Bytes
Expand description

Just like hex2bytes but without checking

Examples

assert_eq!(
	array_bytes::hex2bytes_unchecked("0x4c6f7665204a616e6520466f7265766572"),
	*b"Love Jane Forever"
);