caretta-sync/lazy-supplements-core/src/utils/runnable.rs

3 lines
46 B
Rust
Raw Normal View History

pub trait Runnable {
async fn run(self);
}