pub trait ActionOperations {
// Required method
fn create_sync_action<'life0, 'life1, 'async_trait>(
&'life0 self,
action: &'life1 InstanceActionInfo,
) -> Pin<Box<dyn Future<Output = Result<(), FirecrackerError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}