1 2 3 4 5 6 7 8 9 10
pub trait ToHexString { fn to_hex_string(&self) -> String; } impl ToHexString for SeedHex { fn to_hex_string(&self) -> String { hex::encode(self.seed_bytes.to_owned()) } }