Searched defs:from_hex (Results 1 – 4 of 4) sorted by relevance
13 fn from_hex(input: &str) -> Result<u8, std::num::ParseIntError> { in from_hex() function
52 def from_hex(hex): function
172 fn from_hex<T: AsRef<[u8]>>(hex: T) -> Result<Self, Self::Error>; in from_hex() method191 fn from_hex<T: AsRef<[u8]>>(hex: T) -> Result<Self, Self::Error> { in from_hex() method
369 pub fn from_hex(hex_str: &str) -> Result<Vec<u8>, String> { in from_hex() function