pub enum Request {
Destroy,
GetBlending {
id: NewObject<ZcrBlendingV1>,
surface: ObjectId,
},
}
Variants§
Destroy
unbind from the blending interface
Informs the server that the client will not be using this protocol object anymore. This does not affect any other objects, blending objects included.
GetBlending
extend surface interface for blending
Instantiate an interface extension for the given wl_surface to provide surface blending. If the given wl_surface already has a blending object associated, the blending_exists protocol error is raised.
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