#[repr(C)]pub struct wl_proxy(/* private fields */);Expand description
The libwayland wl_proxy type.
This type morally has the following fields:
interface: *const wl_interfacedisplay: *mut wl_display,queue: *mut wl_event_queue,user_data: *mut c_void,dispatcher: *mut c_void,dispatcher_data: *mut c_void,
The interface and display fields are immutable.
The queue field is mutable and access is protected by the wl_display.mutex.
The user_data, dispatcher, and dispatcher_data fields are mutable and access is
not synchronized.
Auto Trait Implementations§
impl Freeze for wl_proxy
impl RefUnwindSafe for wl_proxy
impl Send for wl_proxy
impl Sync for wl_proxy
impl Unpin for wl_proxy
impl UnwindSafe for wl_proxy
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