kecc::write_base

Trait WriteString

Source
pub(crate) trait WriteString {
    // Required method
    fn write_string(&self) -> String;
}
Expand description

Essentially the same as ToString.

Exists to make some foreign types into a string.

Required Methods§

Implementations on Foreign Types§

Source§

impl WriteString for Initializer

Source§

impl<T: WriteString> WriteString for Option<T>

Source§

impl<T: WriteString> WriteString for &T

Source§

impl<T: WriteString> WriteString for Node<T>

Source§

impl<T: WriteString> WriteString for Box<T>

Implementors§