pub enum FrameRequest {
    Minimize,
    Maximize,
    UnMaximize,
    Close,
    Move(WlSeat),
    Resize(WlSeatResizeEdge),
    ShowMenu(WlSeati32i32),
    Refresh,
}
Expand description

Request generated by a Frame

These requests are generated by a Frame and the Window will forward them appropriately to the server.

Variants

Minimize

The window should be minimized

Maximize

The window should be maximized

UnMaximize

The window should be unmaximized

Close

The window should be closed

Move(WlSeat)

An interactive move should be started

Resize(WlSeatResizeEdge)

An interactive resize should be started

ShowMenu(WlSeati32i32)

Show window menu.

Refresh

The frame requests to be refreshed

Trait Implementations

Formats the value using the given formatter. 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 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.