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 FunctionsHexBytes
to Hex
&[u8] -> &str
b"0x..." -> "0x..."
Array
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_n_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]
``` array_bytes::bytes2hex time: [33.899 µs 34.282 µs 34.708 µs] change: [-0.3915% +1.1844% +2.5863%] (p = 0.13 > 0.05) No change in performance detected. Found 17 outliers among 100 measurements (17.00%) 3 (3.00%) high mild 14 (14.00%) high severe
hex::encode time: [51.175 µs 51.264 µs 51.363 µs] change: [+2.0994% +2.4153% +2.7523%] (p = 0.00 < 0.05) Performance has regressed. Found 8 outliers among 100 measurements (8.00%) 2 (2.00%) high mild 6 (6.00%) high severe
rustchex::tohex time: [29.986 µs 30.047 µs 30.109 µs] change: [+2.8693% +3.1627% +3.4581%] (p = 0.00 < 0.05) Performance has regressed. Found 3 outliers among 100 measurements (3.00%) 3 (3.00%) high mild
fasterhex::hexstring time: [8.9542 µs 8.9779 µs 9.0060 µs] change: [+4.2246% +5.4001% +7.1149%] (p = 0.00 < 0.05) Performance has regressed. Found 2 outliers among 100 measurements (2.00%) 2 (2.00%) high severe
fasterhex::hexencode_fallback time: [7.0233 µs 7.0515 µs 7.0826 µs] change: [+3.5567% +4.0274% +4.4658%] (p = 0.00 < 0.05) Performance has regressed. Found 5 outliers among 100 measurements (5.00%) 4 (4.00%) high mild 1 (1.00%) high severe
array_bytes::hex2bytes time: [100.96 µs 101.50 µs 102.36 µs] change: [+2.0328% +2.4346% +2.9052%] (p = 0.00 < 0.05) Performance has regressed. Found 10 outliers among 100 measurements (10.00%) 7 (7.00%) high mild 3 (3.00%) high severe
arraybytes::hex2bytesunchecked time: [92.686 µs 92.884 µs 93.105 µs] change: [+2.5338% +2.9441% +3.3840%] (p = 0.00 < 0.05) Performance has regressed. Found 10 outliers among 100 measurements (10.00%) 7 (7.00%) high mild 3 (3.00%) high severe
hex::decode time: [101.49 µs 101.79 µs 102.07 µs] change: [+2.1031% +2.5239% +2.9717%] (p = 0.00 < 0.05) Performance has regressed. Found 1 outliers among 100 measurements (1.00%) 1 (1.00%) high mild
rustchex::fromhex time: [66.393 µs 66.582 µs 66.771 µs] change: [+2.4947% +2.8302% +3.1924%] (p = 0.00 < 0.05) Performance has regressed. Found 5 outliers among 100 measurements (5.00%) 3 (3.00%) high mild 2 (2.00%) high severe
fasterhex::hexdecode time: [14.691 µs 14.721 µs 14.755 µs] change: [+2.2650% +2.5324% +2.8132%] (p = 0.00 < 0.05) Performance has regressed. Found 10 outliers among 100 measurements (10.00%) 7 (7.00%) high mild 3 (3.00%) high severe
fasterhex::hexdecode_unchecked time: [6.2365 µs 6.2541 µs 6.2712 µs] change: [+2.8963% +3.1983% +3.5016%] (p = 0.00 < 0.05) Performance has regressed. Found 2 outliers among 100 measurements (2.00%) 2 (2.00%) high mild
fasterhex::hexdecode_fallback time: [6.2442 µs 6.2607 µs 6.2774 µs] change: [+2.4825% +2.8756% +3.2449%] (p = 0.00 < 0.05) Performance has regressed. Found 2 outliers among 100 measurements (2.00%) 1 (1.00%) high mild 1 (1.00%) high sever ```