cgp_runtime/traits/
has_async_runtime.rs

1use cgp_core::Async;
2
3use crate::HasRuntimeType;
4
5pub trait HasAsyncRuntimeType: Async + HasRuntimeType<Runtime: Async> {}
6
7impl<Context> HasAsyncRuntimeType for Context where Context: Async + HasRuntimeType<Runtime: Async> {}