Struct Client
struct Client {
hostname: String,
window_handle: HWND,
process_handle: HANDLE,
}Expand description
Representation of a client
Fields§
§hostname: StringHostname the client is connect to (or supposed to connect to).
window_handle: HWNDWindow handle to the clients console window.
process_handle: HANDLEProcess handle to the client process.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Client
impl RefUnwindSafe for Client
impl !Sync for Client
impl Unpin 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