Full docs: https://docs.rs/array-bytes/latest/array_bytes
TryFromHex
TraitHex
to Num
&str -> isize
&str -> i8
&str -> i16
&str -> i32
&str -> i64
&str -> i128
&str -> usize
&str -> u8
&str -> u16
&str -> u32
&str -> u64
&str -> u128
bytes
Prefixed FunctionsBytes
to Hex
&[u8] -> String
hex
Prefixed FunctionsArray
from Hex
&str -> [u8; N]
Hex
to Bytes
&str -> Vec<u8>
Hex
to T
&str -> T
"0x..." -> [u8; 20] -> H160
slice
Prefixed FunctionsArray
from Slice
&[T] -> [T; N]
Slice
to G
&[T] -> G
&[0_u8, ...] -> [u8; 20] -> H160
vec
Prefixed FunctionsArray
from Vec
Vec<T> -> [T; N]
Vec
to G
Vec<T> -> G
vec![0_u8, ...] -> [u8; 20] -> H160
serde
)#[serde(deserialize_with = "array_bytes::hex_deserialize_into")]
S -> T
"0x..." -> H160
#[serde(deserialize_with = "array_bytes::de_hex2num")]
S -> Num
"0xA" -> 10_u32
#[serde(deserialize_with = "array_bytes::de_hex2bytes")]
S -> Vec<u8>
"0x00" -> vec![0_u8]