melodium-engine 0.10.0

Mélodium core engine and executor implementation
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::building::BuildId;
use melodium_common::{descriptor::Treatment, executive::Value};
use std::{collections::HashMap, sync::Arc};

#[derive(Debug)]
pub struct SourceEntry {
    pub descriptor: Arc<dyn Treatment>,
    pub id: BuildId,
    pub params: HashMap<String, Value>,
}