use Serialize;
use crate::;
/// Inject values of a serializable object based on their field names.
/// Datas are injected on a specific string interpolation using the pattern `{{field_a.subfield_a}}`.
/// You can now think of your struct as an object containing fields, the same way javascript does.
/// This allow a simple navigation around the datas.
Sized + Serialize>