Trait FromHex
hex
pub trait FromHex: Sized { type Error; fn from_hex<T: AsRef<[u8]>>(s: T) -> Result<Self, Self::Error>; }
type Error
fn from_hex<T: AsRef<[u8]>>(s: T) -> Result<Self, Self::Error>
impl FromHex for Vec<u8>