pub enum LaunchMode {
Headless,
Headful {
debug_port: u16,
},
}Variants§
Headless
Headless, for serve.
Headful
Headful, for login. Needs an X display (see login’s xvfb-run re-exec).
Trait Implementations§
Source§impl Clone for LaunchMode
impl Clone for LaunchMode
Source§fn clone(&self) -> LaunchMode
fn clone(&self) -> LaunchMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LaunchMode
impl Debug for LaunchMode
Source§impl PartialEq for LaunchMode
impl PartialEq for LaunchMode
Source§fn eq(&self, other: &LaunchMode) -> bool
fn eq(&self, other: &LaunchMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LaunchMode
impl Eq for LaunchMode
impl StructuralPartialEq for LaunchMode
Auto Trait Implementations§
impl Freeze for LaunchMode
impl RefUnwindSafe for LaunchMode
impl Send for LaunchMode
impl Sync for LaunchMode
impl Unpin for LaunchMode
impl UnsafeUnpin for LaunchMode
impl UnwindSafe for LaunchMode
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