Trait hex_simd::AppendHexEncode
source · pub trait AppendHexEncode: FromHexEncode {
fn append_hex_encode(src: &[u8], dst: &mut Self, case: AsciiCase);
}
Expand description
Types that can append a hex string.
Required Methods§
sourcefn append_hex_encode(src: &[u8], dst: &mut Self, case: AsciiCase)
fn append_hex_encode(src: &[u8], dst: &mut Self, case: AsciiCase)
Encodes bytes to a hex string and appends to the self type.
Implementations on Foreign Types§
source§impl AppendHexEncode for Vec<u8>
Available on crate feature alloc
only.
impl AppendHexEncode for Vec<u8>
Available on crate feature
alloc
only.source§impl AppendHexEncode for String
Available on crate feature alloc
only.
impl AppendHexEncode for String
Available on crate feature
alloc
only.