Skip to main content

melodium_common/executive/
future.rs

1use super::ResultStatus;
2
3pub type ContinuousFuture = Box<dyn std::future::Future<Output = ()> + Send + Unpin>;
4pub type TrackFuture = Box<dyn std::future::Future<Output = ResultStatus> + Send + Unpin>;