pub struct ExecApiClient<C>{ /* private fields */ }
Implementations§
Source§impl<C> ExecApiClient<C>
impl<C> ExecApiClient<C>
pub fn new(configuration: Arc<Configuration<C>>) -> ExecApiClient<C>
Trait Implementations§
Source§impl<C> ExecApi for ExecApiClient<C>
impl<C> ExecApi for ExecApiClient<C>
fn container_exec_libpod( &self, name: &str, control: Option<ContainerExecRequest>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send>>
fn exec_inspect_libpod( &self, id: &str, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send>>
fn exec_resize_libpod( &self, id: &str, h: Option<i32>, w: Option<i32>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send>>
fn exec_start_libpod( &self, id: &str, control: Option<ExecStartLibpodRequest>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send>>
Auto Trait Implementations§
impl<C> Freeze for ExecApiClient<C>
impl<C> !RefUnwindSafe for ExecApiClient<C>
impl<C> Send for ExecApiClient<C>
impl<C> Sync for ExecApiClient<C>
impl<C> Unpin for ExecApiClient<C>
impl<C> !UnwindSafe for ExecApiClient<C>
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