pub struct DesktopEntryInput<'a> {
pub name: &'a str,
pub generic_name: Option<&'a str>,
pub comment: Option<&'a str>,
pub exec_path: &'a Path,
pub icon_name: &'a str,
pub categories: &'a [String],
pub terminal: bool,
}Fields§
§name: &'a str§generic_name: Option<&'a str>§comment: Option<&'a str>§exec_path: &'a Path§icon_name: &'a str§categories: &'a [String]§terminal: boolTrait Implementations§
Source§impl<'a> Clone for DesktopEntryInput<'a>
impl<'a> Clone for DesktopEntryInput<'a>
Auto Trait Implementations§
impl<'a> Freeze for DesktopEntryInput<'a>
impl<'a> RefUnwindSafe for DesktopEntryInput<'a>
impl<'a> Send for DesktopEntryInput<'a>
impl<'a> Sync for DesktopEntryInput<'a>
impl<'a> Unpin for DesktopEntryInput<'a>
impl<'a> UnsafeUnpin for DesktopEntryInput<'a>
impl<'a> UnwindSafe for DesktopEntryInput<'a>
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