pub struct InputMethodState { /* private fields */ }
Trait Implementations§
Source§impl Dispatch<WlOutput, ()> for InputMethodState
impl Dispatch<WlOutput, ()> for InputMethodState
Source§fn event(
state: &mut Self,
output: &WlOutput,
event: Event,
_: &(),
_: &Connection,
_: &QueueHandle<InputMethodState>,
)
fn event( state: &mut Self, output: &WlOutput, event: Event, _: &(), _: &Connection, _: &QueueHandle<InputMethodState>, )
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 Dispatch<WlRegistry, GlobalListContents> for InputMethodState
impl Dispatch<WlRegistry, GlobalListContents> for InputMethodState
Source§fn event(
_: &mut Self,
registry: &WlRegistry,
event: Event,
_: &GlobalListContents,
_: &Connection,
qh: &QueueHandle<InputMethodState>,
)
fn event( _: &mut Self, registry: &WlRegistry, event: Event, _: &GlobalListContents, _: &Connection, qh: &QueueHandle<InputMethodState>, )
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 Dispatch<WlSeat, ()> for InputMethodState
impl Dispatch<WlSeat, ()> for InputMethodState
Source§fn event(
state: &mut Self,
seat: &WlSeat,
event: Event,
_: &(),
_: &Connection,
_: &QueueHandle<InputMethodState>,
)
fn event( state: &mut Self, seat: &WlSeat, event: Event, _: &(), _: &Connection, _: &QueueHandle<InputMethodState>, )
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 Dispatch<ZwpInputMethodManagerV2, ()> for InputMethodState
impl Dispatch<ZwpInputMethodManagerV2, ()> for InputMethodState
Source§fn event(
_: &mut Self,
_: &ZwpInputMethodManagerV2,
event: <ZwpInputMethodManagerV2 as Proxy>::Event,
_: &(),
_: &Connection,
_: &QueueHandle<Self>,
)
fn event( _: &mut Self, _: &ZwpInputMethodManagerV2, event: <ZwpInputMethodManagerV2 as Proxy>::Event, _: &(), _: &Connection, _: &QueueHandle<Self>, )
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 Dispatch<ZwpInputMethodV2, ()> for InputMethodState
impl Dispatch<ZwpInputMethodV2, ()> for InputMethodState
Source§fn event(
state: &mut Self,
_: &ZwpInputMethodV2,
event: Event,
_: &(),
_: &Connection,
_: &QueueHandle<InputMethodState>,
)
fn event( state: &mut Self, _: &ZwpInputMethodV2, event: Event, _: &(), _: &Connection, _: &QueueHandle<InputMethodState>, )
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
Auto Trait Implementations§
impl Freeze for InputMethodState
impl !RefUnwindSafe for InputMethodState
impl Send for InputMethodState
impl Sync for InputMethodState
impl Unpin for InputMethodState
impl !UnwindSafe for InputMethodState
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.