pub struct Client {
pub client: Client,
}Fields§
§client: ClientImplementations§
Source§impl Client
impl Client
pub fn version_request(&self) -> Request<Owned, Owned>
pub fn create_container_request(&self) -> Request<Owned, Owned>
pub fn exec_sync_container_request(&self) -> Request<Owned, Owned>
pub fn attach_container_request(&self) -> Request<Owned, Owned>
pub fn reopen_log_container_request(&self) -> Request<Owned, Owned>
pub fn set_window_size_container_request(&self) -> Request<Owned, Owned>
pub fn create_namespaces_request(&self) -> Request<Owned, Owned>
pub fn start_fd_socket_request(&self) -> Request<Owned, Owned>
pub fn serve_exec_container_request(&self) -> Request<Owned, Owned>
pub fn serve_attach_container_request(&self) -> Request<Owned, Owned>
pub fn serve_port_forward_container_request(&self) -> Request<Owned, Owned>
Trait Implementations§
Source§impl FromClientHook for Client
impl FromClientHook for Client
Source§fn into_client_hook(self) -> Box<DynClientHook>
fn into_client_hook(self) -> Box<DynClientHook>
Unwraps client to get the underlying client hook.
Source§fn as_client_hook(&self) -> &DynClientHook
fn as_client_hook(&self) -> &DynClientHook
Gets a reference to the underlying client hook.
Source§impl<'a> FromPointerBuilder<'a> for Client
impl<'a> FromPointerBuilder<'a> for Client
fn init_pointer(_builder: PointerBuilder<'a>, _size: u32) -> Self
fn get_from_pointer( builder: PointerBuilder<'a>, _default: Option<&'a [Word]>, ) -> Result<Self>
Source§impl<'a> FromPointerReader<'a> for Client
impl<'a> FromPointerReader<'a> for Client
fn get_from_pointer( reader: &PointerReader<'a>, _default: Option<&'a [Word]>, ) -> Result<Self>
Source§impl<_S: Server + 'static> FromServer<_S> for Client
impl<_S: Server + 'static> FromServer<_S> for Client
type Dispatch = ServerDispatch<_S>
fn from_server(s: Rc<_S>) -> ServerDispatch<_S>
Auto Trait Implementations§
impl Freeze for Client
impl !RefUnwindSafe for Client
impl !Send for Client
impl !Sync for Client
impl Unpin for Client
impl UnsafeUnpin for Client
impl !UnwindSafe for Client
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