Struct wayland_client::Proxy
source · [−]pub struct Proxy<I: Interface> { /* private fields */ }
Expand description
An handle to a wayland proxy
This represents a wayland object instantiated in your client session. Several handles to the same object can exist at a given time, and cloning them won’t create a new protocol object, only clone the handle. The lifetime of the protocol object is not tied to the lifetime of these handles, but rather to sending or receiving destroying messages.
These handles are notably used to send requests to the server. To do this
you need to convert them to the corresponding Rust object (using .into()
)
and use methods on the Rust object.
This handle is the most conservative one: it can be sent between threads, but you cannot send any message that would create a new object using it. You must attach it to a event queue, that will host the newly created objects.
Implementations
sourceimpl<I: Interface> Proxy<I> where
I: AsRef<Proxy<I>> + From<Proxy<I>>,
impl<I: Interface> Proxy<I> where
I: AsRef<Proxy<I>> + From<Proxy<I>>,
sourcepub fn send<J>(&self, msg: I::Request, version: Option<u32>) -> Option<Main<J>> where
J: Interface + AsRef<Proxy<J>> + From<Proxy<J>>,
pub fn send<J>(&self, msg: I::Request, version: Option<u32>) -> Option<Main<J>> where
J: Interface + AsRef<Proxy<J>> + From<Proxy<J>>,
Send a request creating an object through this object
Warning: This method is mostly intended to be used by code generated
by wayland-scanner
, and you should probably never need to use it directly,
but rather use the appropriate methods on the Rust object.
This is the generic method to send requests.
sourcepub fn is_alive(&self) -> bool
pub fn is_alive(&self) -> bool
Check if the object associated with this proxy is still alive
Will return false
if the object has been destroyed.
If the object is not managed by this library (if it was created from a raw
pointer from some other library your program interfaces with), this will always
returns true
.
sourcepub fn version(&self) -> u32
pub fn version(&self) -> u32
Retrieve the interface version of this wayland object instance
Returns 0 on dead objects
sourcepub fn user_data(&self) -> &UserData
pub fn user_data(&self) -> &UserData
Access the UserData associated to this object
Each wayland object has an associated UserData, that can store a payload of arbitrary type and is shared by all proxies of this object.
See UserData
documentation for more details.
sourcepub fn equals(&self, other: &Proxy<I>) -> bool
pub fn equals(&self, other: &Proxy<I>) -> bool
Check if the other proxy refers to the same underlying wayland object
You can also use the PartialEq
implementation.
sourcepub fn attach(&self, token: QueueToken) -> Attached<I>
pub fn attach(&self, token: QueueToken) -> Attached<I>
Attach this proxy to the event queue represented by this token
Once a proxy is attached, you can use it to send requests that create new objects. These new objects will be handled by the event queue represented by the provided token.
This does not impact the events received by this object, which are still handled by their original event queue.
sourcepub fn anonymize(self) -> Proxy<AnonymousObject>
pub fn anonymize(self) -> Proxy<AnonymousObject>
Erase the actual type of this proxy
sourceimpl Proxy<AnonymousObject>
impl Proxy<AnonymousObject>
sourcepub fn deanonymize<I: Interface>(self) -> Result<Proxy<I>, Self>
pub fn deanonymize<I: Interface>(self) -> Result<Proxy<I>, Self>
Attempt to recover the typed variant of an anonymous proxy
sourceimpl<I: Interface + AsRef<Proxy<I>> + From<Proxy<I>>> Proxy<I>
impl<I: Interface + AsRef<Proxy<I>> + From<Proxy<I>>> Proxy<I>
sourcepub fn is_external(&self) -> bool
pub fn is_external(&self) -> bool
Check whether this proxy is managed by the library or not
See from_c_ptr
for details.
NOTE: This method will panic if called while the use_system_lib
feature is
not activated.
sourcepub fn c_ptr(&self) -> *mut wl_proxy
pub fn c_ptr(&self) -> *mut wl_proxy
Get a raw pointer to the underlying wayland object
Retrieve a pointer to the object from the libwayland-client.so
library.
You will mostly need it to interface with C libraries needing access
to wayland objects (to initialize an opengl context for example).
NOTE: This method will panic if called while the use_system_lib
feature is
not activated.
sourcepub unsafe fn from_c_ptr(_ptr: *mut wl_proxy) -> Proxy<I> where
I: From<Proxy<I>>,
pub unsafe fn from_c_ptr(_ptr: *mut wl_proxy) -> Proxy<I> where
I: From<Proxy<I>>,
Create a Proxy
instance from a C pointer
Create a Proxy
from a raw pointer to a wayland object from the
C library.
If the pointer was previously obtained by the c_ptr()
method, this
constructs a new proxy for the same object just like the clone()
method would have.
If the object was created by some other C library you are interfacing
with, it will be created in an “unmanaged” state: wayland-client will
treat it as foreign, and as such most of the safeties will be absent.
Notably the lifetime of the object can’t be tracked, so the alive()
method will always return true
and you are responsible of not using
an object past its destruction (as this would cause a protocol error).
You will also be unable to associate any user data value to this object.
In order to handle protocol races, invoking it with a NULL pointer will create an already-dead object.
NOTE: This method will panic if called while the use_system_lib
feature is
not activated.
Safety
The provided pointer must point to a valid wayland object from libwayland-client
with the correct interface.
Trait Implementations
sourceimpl AsRef<Proxy<AnonymousObject>> for AnonymousObject
impl AsRef<Proxy<AnonymousObject>> for AnonymousObject
sourceimpl AsRef<Proxy<WlCallback>> for WlCallback
impl AsRef<Proxy<WlCallback>> for WlCallback
sourceimpl AsRef<Proxy<WlCompositor>> for WlCompositor
impl AsRef<Proxy<WlCompositor>> for WlCompositor
sourceimpl AsRef<Proxy<WlDataDevice>> for WlDataDevice
impl AsRef<Proxy<WlDataDevice>> for WlDataDevice
sourceimpl AsRef<Proxy<WlDataDeviceManager>> for WlDataDeviceManager
impl AsRef<Proxy<WlDataDeviceManager>> for WlDataDeviceManager
sourceimpl AsRef<Proxy<WlDataOffer>> for WlDataOffer
impl AsRef<Proxy<WlDataOffer>> for WlDataOffer
sourceimpl AsRef<Proxy<WlDataSource>> for WlDataSource
impl AsRef<Proxy<WlDataSource>> for WlDataSource
sourceimpl AsRef<Proxy<WlKeyboard>> for WlKeyboard
impl AsRef<Proxy<WlKeyboard>> for WlKeyboard
sourceimpl AsRef<Proxy<WlRegistry>> for WlRegistry
impl AsRef<Proxy<WlRegistry>> for WlRegistry
sourceimpl AsRef<Proxy<WlShellSurface>> for WlShellSurface
impl AsRef<Proxy<WlShellSurface>> for WlShellSurface
sourceimpl AsRef<Proxy<WlSubcompositor>> for WlSubcompositor
impl AsRef<Proxy<WlSubcompositor>> for WlSubcompositor
sourceimpl AsRef<Proxy<WlSubsurface>> for WlSubsurface
impl AsRef<Proxy<WlSubsurface>> for WlSubsurface
sourceimpl From<AnonymousObject> for Proxy<AnonymousObject>
impl From<AnonymousObject> for Proxy<AnonymousObject>
sourcefn from(value: AnonymousObject) -> Self
fn from(value: AnonymousObject) -> Self
Converts to this type from the input type.
sourceimpl From<Proxy<AnonymousObject>> for AnonymousObject
impl From<Proxy<AnonymousObject>> for AnonymousObject
sourceimpl From<Proxy<WlCallback>> for WlCallback
impl From<Proxy<WlCallback>> for WlCallback
sourceimpl From<Proxy<WlCompositor>> for WlCompositor
impl From<Proxy<WlCompositor>> for WlCompositor
sourceimpl From<Proxy<WlDataDevice>> for WlDataDevice
impl From<Proxy<WlDataDevice>> for WlDataDevice
sourceimpl From<Proxy<WlDataDeviceManager>> for WlDataDeviceManager
impl From<Proxy<WlDataDeviceManager>> for WlDataDeviceManager
sourceimpl From<Proxy<WlDataOffer>> for WlDataOffer
impl From<Proxy<WlDataOffer>> for WlDataOffer
sourceimpl From<Proxy<WlDataSource>> for WlDataSource
impl From<Proxy<WlDataSource>> for WlDataSource
sourceimpl From<Proxy<WlKeyboard>> for WlKeyboard
impl From<Proxy<WlKeyboard>> for WlKeyboard
sourceimpl From<Proxy<WlRegistry>> for WlRegistry
impl From<Proxy<WlRegistry>> for WlRegistry
sourceimpl From<Proxy<WlShellSurface>> for WlShellSurface
impl From<Proxy<WlShellSurface>> for WlShellSurface
sourceimpl From<Proxy<WlSubcompositor>> for WlSubcompositor
impl From<Proxy<WlSubcompositor>> for WlSubcompositor
sourceimpl From<Proxy<WlSubsurface>> for WlSubsurface
impl From<Proxy<WlSubsurface>> for WlSubsurface
sourceimpl From<WlCallback> for Proxy<WlCallback>
impl From<WlCallback> for Proxy<WlCallback>
sourcefn from(value: WlCallback) -> Self
fn from(value: WlCallback) -> Self
Converts to this type from the input type.
sourceimpl From<WlCompositor> for Proxy<WlCompositor>
impl From<WlCompositor> for Proxy<WlCompositor>
sourcefn from(value: WlCompositor) -> Self
fn from(value: WlCompositor) -> Self
Converts to this type from the input type.
sourceimpl From<WlDataDevice> for Proxy<WlDataDevice>
impl From<WlDataDevice> for Proxy<WlDataDevice>
sourcefn from(value: WlDataDevice) -> Self
fn from(value: WlDataDevice) -> Self
Converts to this type from the input type.
sourceimpl From<WlDataDeviceManager> for Proxy<WlDataDeviceManager>
impl From<WlDataDeviceManager> for Proxy<WlDataDeviceManager>
sourcefn from(value: WlDataDeviceManager) -> Self
fn from(value: WlDataDeviceManager) -> Self
Converts to this type from the input type.
sourceimpl From<WlDataOffer> for Proxy<WlDataOffer>
impl From<WlDataOffer> for Proxy<WlDataOffer>
sourcefn from(value: WlDataOffer) -> Self
fn from(value: WlDataOffer) -> Self
Converts to this type from the input type.
sourceimpl From<WlDataSource> for Proxy<WlDataSource>
impl From<WlDataSource> for Proxy<WlDataSource>
sourcefn from(value: WlDataSource) -> Self
fn from(value: WlDataSource) -> Self
Converts to this type from the input type.
sourceimpl From<WlKeyboard> for Proxy<WlKeyboard>
impl From<WlKeyboard> for Proxy<WlKeyboard>
sourcefn from(value: WlKeyboard) -> Self
fn from(value: WlKeyboard) -> Self
Converts to this type from the input type.
sourceimpl From<WlRegistry> for Proxy<WlRegistry>
impl From<WlRegistry> for Proxy<WlRegistry>
sourcefn from(value: WlRegistry) -> Self
fn from(value: WlRegistry) -> Self
Converts to this type from the input type.
sourceimpl From<WlShellSurface> for Proxy<WlShellSurface>
impl From<WlShellSurface> for Proxy<WlShellSurface>
sourcefn from(value: WlShellSurface) -> Self
fn from(value: WlShellSurface) -> Self
Converts to this type from the input type.
sourceimpl From<WlSubcompositor> for Proxy<WlSubcompositor>
impl From<WlSubcompositor> for Proxy<WlSubcompositor>
sourcefn from(value: WlSubcompositor) -> Self
fn from(value: WlSubcompositor) -> Self
Converts to this type from the input type.
sourceimpl From<WlSubsurface> for Proxy<WlSubsurface>
impl From<WlSubsurface> for Proxy<WlSubsurface>
sourcefn from(value: WlSubsurface) -> Self
fn from(value: WlSubsurface) -> Self
Converts to this type from the input type.
sourceimpl<I: Interface> PartialEq<Proxy<I>> for Proxy<I> where
I: AsRef<Proxy<I>> + From<Proxy<I>>,
impl<I: Interface> PartialEq<Proxy<I>> for Proxy<I> where
I: AsRef<Proxy<I>> + From<Proxy<I>>,
impl<I: Interface> Eq for Proxy<I> where
I: AsRef<Proxy<I>> + From<Proxy<I>>,
Auto Trait Implementations
impl<I> !RefUnwindSafe for Proxy<I>
impl<I> Send for Proxy<I> where
I: Sync,
impl<I> Sync for Proxy<I> where
I: Sync,
impl<I> Unpin for Proxy<I>
impl<I> !UnwindSafe for Proxy<I>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Downcast for T where
T: Any,
impl<T> Downcast for T where
T: Any,
sourcefn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
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
. Read more
sourcefn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more
sourcefn 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. Read more
sourcefn 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. Read more