1//! # Trait for converting FEEL artifact to its JSON representation.
23/// Trait for converting a FEEL artifact into its JSON representation.
4pub trait Jsonify {
5/// Implementation should convert FEEL artifact to its JSON representation.
6fn jsonify(&self) -> String;
7}