Trait workflow_core::hex::FromHex
source · pub trait FromHex: Sized {
type Error: Display;
// Required method
fn from_hex(hex_str: &str) -> Result<Self, Self::Error>;
}
Required Associated Types§
Required Methods§
Implementations on Foreign Types§
source§impl FromHex for Vec<u8>
impl FromHex for Vec<u8>
Little endian format of full content (so string lengths must be even).