1 2 3 4 5 6 7
use super::*; /// Trait for mergeable configuration object pub trait BasiliqStoreConfigMergeable<T> { /// Merge another configuration object with self fn basiliq_config_merge(&mut self, other: &T) -> Result<(), BasiliqStoreConfigError>; }