pub struct DisplayHandle {
pub display: String,
pub web_port: u16,
pub window_manager: bool,
/* private fields */
}Expand description
Running KasmVNC display. Cloning the surrounding Arc keeps the process
alive until the listener state is dropped.
Fields§
§display: String§web_port: u16§window_manager: boolWhether a window manager is running on the display. With one, the
browser is kept maximized so the client can use resize=remote (the
framebuffer tracks the browser window exactly); without one, the client
must fall back to resize=scale (letterboxed).
Trait Implementations§
Source§impl Drop for DisplayHandle
impl Drop for DisplayHandle
Auto Trait Implementations§
impl !Freeze for DisplayHandle
impl !RefUnwindSafe for DisplayHandle
impl !UnwindSafe for DisplayHandle
impl Send for DisplayHandle
impl Sync for DisplayHandle
impl Unpin for DisplayHandle
impl UnsafeUnpin for DisplayHandle
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