pub struct ImageServiceClient { /* private fields */ }Implementations§
Source§impl ImageServiceClient
impl ImageServiceClient
pub fn new(channel: Channel) -> Self
pub fn list_images_opt( &self, req: &ListImagesRequest, opt: CallOption, ) -> Result<ListImagesResponse>
pub fn list_images(&self, req: &ListImagesRequest) -> Result<ListImagesResponse>
pub fn list_images_async_opt( &self, req: &ListImagesRequest, opt: CallOption, ) -> Result<ClientUnaryReceiver<ListImagesResponse>>
pub fn list_images_async( &self, req: &ListImagesRequest, ) -> Result<ClientUnaryReceiver<ListImagesResponse>>
pub fn image_status_opt( &self, req: &ImageStatusRequest, opt: CallOption, ) -> Result<ImageStatusResponse>
pub fn image_status( &self, req: &ImageStatusRequest, ) -> Result<ImageStatusResponse>
pub fn image_status_async_opt( &self, req: &ImageStatusRequest, opt: CallOption, ) -> Result<ClientUnaryReceiver<ImageStatusResponse>>
pub fn image_status_async( &self, req: &ImageStatusRequest, ) -> Result<ClientUnaryReceiver<ImageStatusResponse>>
pub fn pull_image_opt( &self, req: &PullImageRequest, opt: CallOption, ) -> Result<PullImageResponse>
pub fn pull_image(&self, req: &PullImageRequest) -> Result<PullImageResponse>
pub fn pull_image_async_opt( &self, req: &PullImageRequest, opt: CallOption, ) -> Result<ClientUnaryReceiver<PullImageResponse>>
pub fn pull_image_async( &self, req: &PullImageRequest, ) -> Result<ClientUnaryReceiver<PullImageResponse>>
pub fn remove_image_opt( &self, req: &RemoveImageRequest, opt: CallOption, ) -> Result<RemoveImageResponse>
pub fn remove_image( &self, req: &RemoveImageRequest, ) -> Result<RemoveImageResponse>
pub fn remove_image_async_opt( &self, req: &RemoveImageRequest, opt: CallOption, ) -> Result<ClientUnaryReceiver<RemoveImageResponse>>
pub fn remove_image_async( &self, req: &RemoveImageRequest, ) -> Result<ClientUnaryReceiver<RemoveImageResponse>>
pub fn image_fs_info_opt( &self, req: &ImageFsInfoRequest, opt: CallOption, ) -> Result<ImageFsInfoResponse>
pub fn image_fs_info( &self, req: &ImageFsInfoRequest, ) -> Result<ImageFsInfoResponse>
pub fn image_fs_info_async_opt( &self, req: &ImageFsInfoRequest, opt: CallOption, ) -> Result<ClientUnaryReceiver<ImageFsInfoResponse>>
pub fn image_fs_info_async( &self, req: &ImageFsInfoRequest, ) -> Result<ClientUnaryReceiver<ImageFsInfoResponse>>
pub fn spawn<F>(&self, f: F)
Trait Implementations§
Source§impl Clone for ImageServiceClient
impl Clone for ImageServiceClient
Source§fn clone(&self) -> ImageServiceClient
fn clone(&self) -> ImageServiceClient
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ImageServiceClient
impl !RefUnwindSafe for ImageServiceClient
impl Send for ImageServiceClient
impl Sync for ImageServiceClient
impl Unpin for ImageServiceClient
impl !UnwindSafe for ImageServiceClient
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more