pub struct StartupApp {
pub command: String,
pub restart_on_death: bool,
pub no_startup_id: bool,
pub should_halt_compositor_on_death: bool,
pub in_systemd_scope: bool,
}Expand description
An application to start on compositor launch.
Fields§
§command: String§restart_on_death: bool§no_startup_id: bool§should_halt_compositor_on_death: bool§in_systemd_scope: boolTrait Implementations§
Source§impl Clone for StartupApp
impl Clone for StartupApp
Source§fn clone(&self) -> StartupApp
fn clone(&self) -> StartupApp
Returns a duplicate of the value. Read more
1.0.0 · 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 StartupApp
impl Debug for StartupApp
Source§impl Default for StartupApp
impl Default for StartupApp
Source§fn default() -> StartupApp
fn default() -> StartupApp
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StartupApp
impl RefUnwindSafe for StartupApp
impl Send for StartupApp
impl Sync for StartupApp
impl Unpin for StartupApp
impl UnwindSafe for StartupApp
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