Function array_bytes::hex_into
source · pub fn hex_into<T>(hex: &str) -> ArrayBytesResult<T>where
T: From<Bytes>,
Expand description
Try to convert Hex
to T
directly, where T: From<Vec<u8>>
.
Examples
#[derive(Debug, PartialEq)]
struct LJF(Vec<u8>);
impl From<Vec<u8>> for LJF {
fn from(vec: Vec<u8>) -> Self {
Self(vec)
}
}
assert_eq!(
array_bytes::hex_into::<LJF>("0x4c6f7665204a616e6520466f7265766572"),
Ok(LJF(b"Love Jane Forever".to_vec()))
);