Struct smithay_client_toolkit::registry::SimpleGlobal
source · pub struct SimpleGlobal<I, const MAX_VERSION: u32> {
proxy: GlobalProxy<I>,
}
Fields§
§proxy: GlobalProxy<I>
Implementations§
source§impl<I: Proxy + 'static, const MAX_VERSION: u32> SimpleGlobal<I, MAX_VERSION>
impl<I: Proxy + 'static, const MAX_VERSION: u32> SimpleGlobal<I, MAX_VERSION>
pub fn bind<State>( globals: &GlobalList, qh: &QueueHandle<State>, ) -> Result<Self, BindError>
pub fn get(&self) -> Result<&I, GlobalError>
pub fn with_min_version(&self, min_version: u32) -> Result<&I, GlobalError>
Trait Implementations§
source§impl<D, I, const MAX_VERSION: u32> Dispatch<I, (), D> for SimpleGlobal<I, MAX_VERSION>
impl<D, I, const MAX_VERSION: u32> Dispatch<I, (), D> for SimpleGlobal<I, MAX_VERSION>
source§fn event(
_: &mut D,
_: &I,
_: <I as Proxy>::Event,
_: &(),
_: &Connection,
_: &QueueHandle<D>,
)
fn event( _: &mut D, _: &I, _: <I as Proxy>::Event, _: &(), _: &Connection, _: &QueueHandle<D>, )
Called when an event from the server is processed Read more
source§fn event_created_child(
opcode: u16,
_qhandle: &QueueHandle<State>,
) -> Arc<dyn ObjectData>
fn event_created_child( opcode: u16, _qhandle: &QueueHandle<State>, ) -> Arc<dyn ObjectData>
Method used to initialize the user-data of objects created by events Read more
source§impl<I: Proxy + Clone, const MAX_VERSION: u32> ProvidesBoundGlobal<I, MAX_VERSION> for SimpleGlobal<I, MAX_VERSION>
impl<I: Proxy + Clone, const MAX_VERSION: u32> ProvidesBoundGlobal<I, MAX_VERSION> for SimpleGlobal<I, MAX_VERSION>
fn bound_global(&self) -> Result<I, GlobalError>
fn with_min_version(&self, version: u32) -> Result<I, GlobalError>
Auto Trait Implementations§
impl<I, const MAX_VERSION: u32> Freeze for SimpleGlobal<I, MAX_VERSION>where
I: Freeze,
impl<I, const MAX_VERSION: u32> RefUnwindSafe for SimpleGlobal<I, MAX_VERSION>where
I: RefUnwindSafe,
impl<I, const MAX_VERSION: u32> Send for SimpleGlobal<I, MAX_VERSION>where
I: Send,
impl<I, const MAX_VERSION: u32> Sync for SimpleGlobal<I, MAX_VERSION>where
I: Sync,
impl<I, const MAX_VERSION: u32> Unpin for SimpleGlobal<I, MAX_VERSION>where
I: Unpin,
impl<I, const MAX_VERSION: u32> UnwindSafe for SimpleGlobal<I, MAX_VERSION>where
I: UnwindSafe,
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.