pub struct VncWorker<T: Listener> { /* private fields */ }
Expand description
A worker for running a VNC server.
Trait Implementations§
Source§impl Worker for VncWorker<TcpListener>
impl Worker for VncWorker<TcpListener>
Source§const ID: WorkerId<Self::Parameters> = vnc_worker_defs::VNC_WORKER_TCP
const ID: WorkerId<Self::Parameters> = vnc_worker_defs::VNC_WORKER_TCP
String identifying the Worker. Used when launching workers in separate processes
to specify which workers are supported and which worker to launch.
IDs must be unique within a given worker host.
Source§type Parameters = VncParameters<TcpListener>
type Parameters = VncParameters<TcpListener>
Parameters passed to launch the worker. Used with [
Worker::new
]. Read moreSource§type State = VncParameters<TcpListener>
type State = VncParameters<TcpListener>
State used to implement hot restart. Used with [
Worker::restart
].Source§impl Worker for VncWorker<VmListener>
impl Worker for VncWorker<VmListener>
Source§const ID: WorkerId<Self::Parameters> = vnc_worker_defs::VNC_WORKER_VMSOCKET
const ID: WorkerId<Self::Parameters> = vnc_worker_defs::VNC_WORKER_VMSOCKET
String identifying the Worker. Used when launching workers in separate processes
to specify which workers are supported and which worker to launch.
IDs must be unique within a given worker host.
Source§type Parameters = VncParameters<VmListener>
type Parameters = VncParameters<VmListener>
Parameters passed to launch the worker. Used with [
Worker::new
]. Read moreSource§type State = VncParameters<VmListener>
type State = VncParameters<VmListener>
State used to implement hot restart. Used with [
Worker::restart
].Auto Trait Implementations§
impl<T> Freeze for VncWorker<T>
impl<T> !RefUnwindSafe for VncWorker<T>
impl<T> !Send for VncWorker<T>
impl<T> !Sync for VncWorker<T>
impl<T> Unpin for VncWorker<T>
impl<T> !UnwindSafe for VncWorker<T>
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