Trait hex::FromHex
[−]
[src]
pub trait FromHex: Sized { type Error; fn from_hex<T: AsRef<[u8]>>(s: T) -> Result<Self, Self::Error>; }
Associated Types
type Error
Required Methods
Implementors
impl FromHex for Vec<u8> type Error = FromHexError;