melodium-common 0.10.1

Common Mélodium elements and traits
Documentation
1
2
3
4
5
6
7
8
use super::{DataType, Documented, Identified};
use core::fmt::{Debug, Display};
use std::collections::HashMap;

pub trait Context: Display + Identified + Documented + Debug + Send + Sync {
    fn name(&self) -> &str;
    fn values(&self) -> &HashMap<String, DataType>;
}