//! Platform specific settings for macOS.
/// The platform specific window settings of an application.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]pubstructPlatformSpecific{/// Hides the window title.
pubtitle_hidden:bool,
/// Makes the titlebar transparent and allows the content to appear behind it.
pubtitlebar_transparent:bool,
/// Makes the window content appear behind the titlebar.
pubfullsize_content_view:bool,
}