pub trait DisplayBinary {
    // Required method
    fn to_binary(&self) -> Self;
}

Required Methods§

source

fn to_binary(&self) -> Self

Object Safety§

This trait is not object safe.

Implementors§