dsntk_common/
jsonify.rs

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