1 2 3 4 5 6
use crate::common::model::data::DataEvent; use std::fmt::Debug; pub trait StoreTrait: Clone + Debug { fn build(&self) -> DataEvent; }