pub struct ExtraData {
    pub console_props: Option<ConsoleDataBlock>,
    pub console_fe_props: Option<ConsoleFEDataBlock>,
    pub shim_props: Option<ShimDataBlock>,
    /* private fields */
}
Expand description

ExtraData refers to a set of structures that convey additional information about a link target. These optional structures can be present in an extra data section that is appended to the basic Shell Link Binary File Format. The ExtraData structures conform to the following ABNF rules [RFC5234]:

Fields

console_props: Option<ConsoleDataBlock>

The ConsoleDataBlock structure specifies the display settings to use when a link target specifies an application that is run in a console window.

console_fe_props: Option<ConsoleFEDataBlock>

The ConsoleFEDataBlock structure specifies the code page to use for displaying text when a link target specifies an application that is run in a console window.

shim_props: Option<ShimDataBlock>

The ShimDataBlock structure specifies the name of a shim that can be applied when activating a link target.

Implementations

Construct a new ExtraData instance from the data in cursor

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.