pub trait Substrate: Send + Sync {
// Required methods
fn execute(
&self,
cmd: SubstrateCommand,
) -> Result<SubstrateResult, SubstrateError>;
fn is_available(&self) -> bool;
}pub trait Substrate: Send + Sync {
// Required methods
fn execute(
&self,
cmd: SubstrateCommand,
) -> Result<SubstrateResult, SubstrateError>;
fn is_available(&self) -> bool;
}