pub enum Request {
CreateSurface {
id: NewId,
},
CreateRegion {
id: NewId,
},
}
Variants§
CreateSurface
create new surface
Ask the compositor to create a new surface.
Fields
§
id: NewId
the new surface
CreateRegion
create new region
Ask the compositor to create a new region.
Fields
§
id: NewId
the new region
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