1
2
3
4
5
6
7
8
9
//! # Trait for converting FEEL artifact to its JSON representation.

/// Trait for converting a FEEL artifact into its JSON representation.
pub trait Jsonify {
  /// Implementation should convert FEEL artifact to its JSON representation.
  fn jsonify(&self) -> String;
}

// granskade