pub struct DesktopFile {
pub name: String,
pub exec_command: String,
pub icon: String,
pub categories: Vec<String>,
pub mime_types: Vec<String>,
}Expand description
Parsed .desktop file (freedesktop-style).
Fields§
§name: StringDisplay name (from Name=).
exec_command: StringCommand to execute (from Exec=).
icon: StringIcon identifier (from Icon=).
categories: Vec<String>Categories list (from Categories=, semicolon-separated).
mime_types: Vec<String>Supported MIME types (from MimeType=, semicolon-separated).
Implementations§
Source§impl DesktopFile
impl DesktopFile
Trait Implementations§
Source§impl Clone for DesktopFile
impl Clone for DesktopFile
Source§fn clone(&self) -> DesktopFile
fn clone(&self) -> DesktopFile
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DesktopFile
impl RefUnwindSafe for DesktopFile
impl Send for DesktopFile
impl Sync for DesktopFile
impl Unpin for DesktopFile
impl UnwindSafe for DesktopFile
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)