pub struct MsiComponentRecord {
pub package_name: String,
pub component_id: String,
pub path: Option<String>,
pub normalized_path: Option<String>,
}Expand description
A normalized MSI component entry.
Fields§
§package_name: StringPackage name.
component_id: StringMSI component identifier.
path: Option<String>Optional component path.
normalized_path: Option<String>Lowercased normalized component path, when present.
Trait Implementations§
Source§impl Clone for MsiComponentRecord
impl Clone for MsiComponentRecord
Source§fn clone(&self) -> MsiComponentRecord
fn clone(&self) -> MsiComponentRecord
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 MsiComponentRecord
impl Debug for MsiComponentRecord
Source§impl<'de> Deserialize<'de> for MsiComponentRecord
impl<'de> Deserialize<'de> for MsiComponentRecord
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 MsiComponentRecord
impl PartialEq for MsiComponentRecord
Source§impl Serialize for MsiComponentRecord
impl Serialize for MsiComponentRecord
impl Eq for MsiComponentRecord
impl StructuralPartialEq for MsiComponentRecord
Auto Trait Implementations§
impl Freeze for MsiComponentRecord
impl RefUnwindSafe for MsiComponentRecord
impl Send for MsiComponentRecord
impl Sync for MsiComponentRecord
impl Unpin for MsiComponentRecord
impl UnwindSafe for MsiComponentRecord
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