Skip to main content

ZincWriter

Trait ZincWriter 

Source
pub trait ZincWriter<'a, T: NumTrait + 'a> {
    // Required method
    fn to_zinc(&self, buf: &mut String) -> Result;
}

Required Methods§

Source

fn to_zinc(&self, buf: &mut String) -> Result

Trait Implementations§

Source§

impl<'a, T: NumTrait + 'a> Display for dyn ZincWriter<'a, T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<'a, T: NumTrait + 'a> ZincWriter<'a, T> for dyn HVal<'a, T> + 'a