blob: 009b9d9e0a1c57049cc8378da0bc5a8280d4b3ea (
plain) (
tree)
 | 
 | 
//! Platform specific settings for Linux.
/// The platform specific window settings of an application.
#[derive(Debug, Clone, PartialEq, Eq, Default)]
pub struct PlatformSpecific {
    /// Sets the application id of the window.
    ///
    /// As a best practice, it is suggested to select an application id that match
    /// the basename of the application’s .desktop file.
    pub application_id: String,
}
 
  |