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