pub trait ByteString {
    // Required methods
    fn bytes(&self) -> Vec<u8>;
    fn encoded(&self) -> String;
    fn encoded_with_prefix(&self) -> String;
}

Required Methods§

source

fn bytes(&self) -> Vec<u8>

source

fn encoded(&self) -> String

source

fn encoded_with_prefix(&self) -> String

Implementors§