[][src]Enum lnk::ShowCommand

pub enum ShowCommand {
    ShowNormal,
    ShowMaximized,
    ShowMinNoActive,
}

The expected window state of an application launched by the link.

Variants

ShowNormal

The application is open and its window is open in a normal fashion.

ShowMaximized

The application is open, and keyboard focus is given to the application, but its window is not shown.

ShowMinNoActive

The application is open, but its window is not shown. It is not given the keyboard focus.

Trait Implementations

impl Clone for ShowCommand[src]

impl Copy for ShowCommand[src]

impl Debug for ShowCommand[src]

impl Eq for ShowCommand[src]

impl FromPrimitive for ShowCommand[src]

impl Hash for ShowCommand[src]

impl PartialEq<ShowCommand> for ShowCommand[src]

impl StructuralEq for ShowCommand[src]

impl StructuralPartialEq for ShowCommand[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.