pub trait GlobalStateMetaManagerRawProcessor: Send + Sync {
// Required method
fn get_global_state_meta<'life0, 'life1, 'async_trait>(
&'life0 self,
dec_id: &'life1 ObjectId,
category: GlobalStateCategory,
auto_create: bool,
) -> Pin<Box<dyn Future<Output = BuckyResult<Option<GlobalStateMetaRawProcessorRef>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}