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