8 lines
211 B
Rust
Raw Normal View History

use async_trait::async_trait;
use testing_framework_core::scenario::DynError;
#[async_trait]
pub trait NodeControlHandle: Send + Sync {
2026-01-26 08:26:15 +01:00
async fn restart_node(&self, index: usize) -> Result<(), DynError>;
}