Trait hex::FromHex [] [src]

pub trait FromHex: Sized {
    type Error;
    fn from_hex(s: &str) -> Result<Self, Self::Error>;
}

Associated Types

type Error

Required Methods

fn from_hex(s: &str) -> Result<Self, Self::Error>

Implementors