1 2 3 4 5 6 7
//! RapidDB Types use std::sync::Arc; use std::sync::Mutex; pub type AggregateFn = Arc<Mutex<dyn Fn(&str, &[u8], &Arc<Mutex<Vec<u8>>>) + Send>>;