#[non_exhaustive]
pub enum Request<'a> {
Show 15 variants SetState { flags: u32, state: u32, }, SetVirtualDesktop { number: u32, }, SetMinimizedGeometry { panel: WlSurface, x: u32, y: u32, width: u32, height: u32, }, UnsetMinimizedGeometry { panel: WlSurface, }, Close, RequestMove, RequestResize, Destroy, GetIcon { fd: BorrowedFd<'a>, }, RequestEnterVirtualDesktop { id: String, }, RequestEnterNewVirtualDesktop, RequestLeaveVirtualDesktop { id: String, }, RequestEnterActivity { id: String, }, RequestLeaveActivity { id: String, }, SendToOutput { output: WlOutput, },
}

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

SetState

Fields

§flags: u32

bitfield of set state flags

§state: u32

bitfield of state flags

set window state

Set window state.

Values for state argument are described by org_kde_plasma_window_management.state and can be used together in a bitfield. The flags bitfield describes which flags are supposed to be set, the state bitfield the value for the set flags

§

SetVirtualDesktop

Fields

§number: u32

zero based virtual desktop number

map window on a virtual desktop

Deprecated: use enter_virtual_desktop Maps the window to a different virtual desktop.

To show the window on all virtual desktops, call the org_kde_plasma_window.set_state request and specify a on_all_desktops state in the bitfield.

§

SetMinimizedGeometry

Fields

§width: u32
§height: u32

set the geometry for a taskbar entry

Sets the geometry of the taskbar entry for this window. The geometry is relative to a panel in particular.

§

UnsetMinimizedGeometry

Fields

set the geometry for a taskbar entry

Remove the task geometry information for a particular panel.

§

Close

close window

Close this window.

§

RequestMove

request move

Request an interactive move for this window.

Only available since version 3 of the interface

§

RequestResize

request resize

Request an interactive resize for this window.

Only available since version 3 of the interface

§

Destroy

remove resource for the org_kde_plasma_window

Removes the resource bound for this org_kde_plasma_window.

This is a destructor, once sent this object cannot be used any longer. Only available since version 4 of the interface

§

GetIcon

Fields

§fd: BorrowedFd<'a>

file descriptor for the icon

Requests to get the window icon

The compositor will write the window icon into the provided file descriptor. The data is a serialized QIcon with QDataStream.

Only available since version 7 of the interface

§

RequestEnterVirtualDesktop

Fields

§id: String

desktop id

map window on a virtual desktop

Make the window enter a virtual desktop. A window can enter more than one virtual desktop. if the id is empty or invalid, no action will be performed.

Only available since version 8 of the interface

§

RequestEnterNewVirtualDesktop

map window on a virtual desktop

RFC: do this with an empty id to request_enter_virtual_desktop? Make the window enter a new virtual desktop. If the server consents the request, it will create a new virtual desktop and assign the window to it.

Only available since version 8 of the interface

§

RequestLeaveVirtualDesktop

Fields

§id: String

desktop id

remove a window from a virtual desktop

Make the window exit a virtual desktop. If it exits all desktops it will be considered on all of them.

Only available since version 8 of the interface

§

RequestEnterActivity

Fields

§id: String

activity id

map window on an activity

Make the window enter an activity. A window can enter more activity. If the id is empty or invalid, no action will be performed.

Only available since version 14 of the interface

§

RequestLeaveActivity

Fields

§id: String

activity id

remove a window from an activity

Make the window exit a an activity. If it exits all activities it will be considered on all of them.

Only available since version 14 of the interface

§

SendToOutput

Fields

§output: WlOutput

send window to specified output

Requests this window to be displayed in a specific output.

Only available since version 15 of the interface

Implementations§

source§

impl<'a> Request<'a>

source

pub fn opcode(&self) -> u16

Get the opcode number of this message

Trait Implementations§

source§

impl<'a> Debug for Request<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for Request<'a>

§

impl<'a> !RefUnwindSafe for Request<'a>

§

impl<'a> Send for Request<'a>

§

impl<'a> Sync for Request<'a>

§

impl<'a> Unpin for Request<'a>

§

impl<'a> !UnwindSafe for Request<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Downcast for T
where T: Any,

§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.