Trait chord_core::action::Chord

source ·
pub trait Chord: Sync + Send {
    fn creator(&self, action: &str) -> Option<&dyn Creator>;
    fn render(&self, context: &dyn Context, raw: &Value) -> Result<Value, Error>;
    fn clone(&self) -> Box<dyn Chord>;
}

Required Methods

Implementors