pub struct MsiShortcutRecord {
pub package_name: String,
pub path: String,
pub normalized_path: String,
pub target_path: Option<String>,
pub normalized_target_path: Option<String>,
}Expand description
A normalized MSI shortcut entry.
Fields§
§package_name: StringPackage name.
path: StringShortcut path.
normalized_path: StringLowercased normalized shortcut path.
target_path: Option<String>Shortcut target path, when present.
normalized_target_path: Option<String>Lowercased normalized target path, when present.
Trait Implementations§
Source§impl Clone for MsiShortcutRecord
impl Clone for MsiShortcutRecord
Source§fn clone(&self) -> MsiShortcutRecord
fn clone(&self) -> MsiShortcutRecord
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 MsiShortcutRecord
impl Debug for MsiShortcutRecord
Source§impl<'de> Deserialize<'de> for MsiShortcutRecord
impl<'de> Deserialize<'de> for MsiShortcutRecord
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MsiShortcutRecord
impl PartialEq for MsiShortcutRecord
Source§impl Serialize for MsiShortcutRecord
impl Serialize for MsiShortcutRecord
impl Eq for MsiShortcutRecord
impl StructuralPartialEq for MsiShortcutRecord
Auto Trait Implementations§
impl Freeze for MsiShortcutRecord
impl RefUnwindSafe for MsiShortcutRecord
impl Send for MsiShortcutRecord
impl Sync for MsiShortcutRecord
impl Unpin for MsiShortcutRecord
impl UnwindSafe for MsiShortcutRecord
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