Trait hex_simd::FromHexDecode
source · pub trait FromHexDecode: Sized {
fn from_hex_decode(data: &[u8]) -> Result<Self, Error>;
}
Expand description
Types that can be decoded from a hex string.
Required Methods§
Implementations on Foreign Types§
source§impl FromHexDecode for Box<[u8]>
Available on crate feature alloc
only.
impl FromHexDecode for Box<[u8]>
Available on crate feature
alloc
only.source§impl FromHexDecode for Vec<u8>
Available on crate feature alloc
only.
impl FromHexDecode for Vec<u8>
Available on crate feature
alloc
only.