pub trait Output: Debug {
    // Required methods
    fn to_output_string(&self, output: &str) -> String;
    fn to_output(&self) -> Value;
}
Expand description

Generate the response based on output type.

Required Methods§

source

fn to_output_string(&self, output: &str) -> String

source

fn to_output(&self) -> Value

Trait Implementations§

source§

impl Display for dyn Output

source§

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

Formats the value using the given formatter. Read more

Implementors§