Struct wayland_backend::sys::client_impl::InnerBackend
source · pub struct InnerBackend {
inner: Arc<Inner>,
}
Fields§
§inner: Arc<Inner>
Implementations§
source§impl InnerBackend
impl InnerBackend
fn lock_state(&self) -> MutexGuard<'_, ConnectionState>
pub fn downgrade(&self) -> WeakInnerBackend
pub fn display_ptr(&self) -> *mut wl_display
source§impl InnerBackend
impl InnerBackend
pub fn connect(stream: UnixStream) -> Result<Self, NoWaylandLib>
pub unsafe fn from_foreign_display(display: *mut wl_display) -> Self
fn from_display(display: *mut wl_display, owned: bool) -> Self
pub fn flush(&self) -> Result<(), WaylandError>
pub fn poll_fd(&self) -> BorrowedFd<'_>
pub fn dispatch_inner_queue(&self) -> Result<usize, WaylandError>
source§impl InnerBackend
impl InnerBackend
pub fn display_id(&self) -> ObjectId
pub fn last_error(&self) -> Option<WaylandError>
pub fn info(&self, _: ObjectId) -> Result<ObjectInfo, InvalidId>
pub fn null_id() -> ObjectId
pub fn send_request( &self, _: Message<ObjectId, RawFd>, data: Option<Arc<dyn ObjectData>>, child_spec: Option<(&'static Interface, u32)>, ) -> Result<ObjectId, InvalidId>
pub fn get_data(&self, _: ObjectId) -> Result<Arc<dyn ObjectData>, InvalidId>
pub fn set_data( &self, _: ObjectId, data: Arc<dyn ObjectData>, ) -> Result<(), InvalidId>
sourcepub unsafe fn manage_object(
&self,
interface: &'static Interface,
proxy: *mut wl_proxy,
data: Arc<dyn ObjectData>,
) -> ObjectId
pub unsafe fn manage_object( &self, interface: &'static Interface, proxy: *mut wl_proxy, data: Arc<dyn ObjectData>, ) -> ObjectId
Start managing a Wayland object.
Safety: This will change the event queue the proxy is associated with. Changing the event queue of an existing proxy is not thread-safe. If another thread is concurrently reading the wayland socket and the proxy already received an event it might get enqueued on the old event queue.
sourceunsafe fn manage_object_internal(
&self,
interface: &'static Interface,
proxy: *mut wl_proxy,
data: Arc<dyn ObjectData>,
guard: &mut MutexGuard<'_, ConnectionState>,
) -> ObjectId
unsafe fn manage_object_internal( &self, interface: &'static Interface, proxy: *mut wl_proxy, data: Arc<dyn ObjectData>, guard: &mut MutexGuard<'_, ConnectionState>, ) -> ObjectId
Start managing a Wayland object.
Opposed to Self::manage_object
, this does not acquire any guards.
Trait Implementations§
source§impl Clone for InnerBackend
impl Clone for InnerBackend
source§fn clone(&self) -> InnerBackend
fn clone(&self) -> InnerBackend
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for InnerBackend
impl Debug for InnerBackend
source§impl PartialEq for InnerBackend
impl PartialEq for InnerBackend
impl Eq for InnerBackend
impl Send for InnerBackend
impl Sync for InnerBackend
Auto Trait Implementations§
impl Freeze for InnerBackend
impl RefUnwindSafe for InnerBackend
impl Unpin for InnerBackend
impl UnwindSafe for InnerBackend
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
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.