pub trait ImageServiceClient {
// Required methods
fn list_images<'life0, 'async_trait>(
&'life0 self,
req: ListImagesRequest
) -> Pin<Box<dyn Future<Output = Result<Response<ListImagesResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn image_status<'life0, 'async_trait>(
&'life0 self,
req: ImageStatusRequest
) -> Pin<Box<dyn Future<Output = Result<Response<ImageStatusResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn pull_image<'life0, 'async_trait>(
&'life0 self,
req: PullImageRequest
) -> Pin<Box<dyn Future<Output = Result<Response<PullImageResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn remove_image<'life0, 'async_trait>(
&'life0 self,
req: RemoveImageRequest
) -> Pin<Box<dyn Future<Output = Result<Response<RemoveImageResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn image_fs_info<'life0, 'async_trait>(
&'life0 self,
req: ImageFsInfoRequest
) -> Pin<Box<dyn Future<Output = Result<Response<ImageFsInfoResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}