pub enum Request {
GetAuraSurface {
id: NewId,
surface: ObjectId,
},
GetAuraOutput {
id: NewId,
output: ObjectId,
},
}
Variants§
GetAuraSurface
extend surface interface for aura shell
Instantiate an interface extension for the given wl_surface to provide aura shell functionality. If the given wl_surface is not associated with a shell surface, the shell_surface_missing protocol error is raised.
GetAuraOutput
extend output interface for aura shell
Instantiate an interface extension for the given wl_output to provide aura shell functionality.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Request
impl RefUnwindSafe for Request
impl Send for Request
impl Sync for Request
impl Unpin for Request
impl UnwindSafe for Request
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more