[][src]Trait encodings::hex::FromHex

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

Associated Types

type Error

Loading content...

Required methods

fn from_hex<T: AsRef<[u8]>>(hex: T) -> Result<Self, Self::Error>

Loading content...

Implementations on Foreign Types

impl FromHex for Vec<u8>[src]

type Error = FromHexError

Loading content...

Implementors

Loading content...