pub enum DisplayNameType {
    NormalDisplay,
    ParentRelativeParsing,
    DesktopAbsoluteParsing,
    ParentRelativeEditing,
    DesktopAbsoluteEditing,
    FileSysPath,
    Url,
    ParentRelativeForAddressBar,
    ParentRelative,
    ParentRelativeForUi,
}
Expand description

Display name type for shellitem Requests the form of an item’s display name to retrieve through IShellItem::GetDisplayName and SHGetNameFromIDList.

Variants§

§

NormalDisplay

Returns the display name relative to the parent folder. In UI this name is generally ideal for display to the user.

§

ParentRelativeParsing

Returns the parsing name relative to the parent folder. This name is not suitable for use in UI.

§

DesktopAbsoluteParsing

Returns the parsing name relative to the desktop. This name is not suitable for use in UI.

§

ParentRelativeEditing

Returns the editing name relative to the parent folder. In UI this name is suitable for display to the user.

§

DesktopAbsoluteEditing

Returns the editing name relative to the desktop. In UI this name is suitable for display to the user.

§

FileSysPath

Returns the item’s file system path, if it has one. Only items that report SFGAO_FILESYSTEM have a file system path. When an item does not have a file system path, a call to IShellItem::GetDisplayName on that item will fail. In UI this name is suitable for display to the user in some cases, but note that it might not be specified for all items.

§

Url

Returns the item’s URL, if it has one. Some items do not have a URL, and in those cases a call to IShellItem::GetDisplayName will fail. This name is suitable for display to the user in some cases, but note that it might not be specified for all items.

§

ParentRelativeForAddressBar

Returns the path relative to the parent folder in a friendly format as displayed in an address bar. This name is suitable for display to the user.

§

ParentRelative

Returns the path relative to the parent folder.

§

ParentRelativeForUi

Introduced in Windows 8.

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
Converts to this type from the input type.
Feeds this value into the given Hasher. Read more
Feeds a slice of this type into the given Hasher. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. 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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
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.