Output

Trait Output 

Source
pub trait Output: Send {
    // Required method
    fn print_json(&self, minify: bool);
}

Required Methods§

Source

fn print_json(&self, minify: bool)

Implementors§

Source§

impl<T> Output for T
where T: Serialize + Send,