Struct wayland_protocols::wp::input_method::zv1::server::zwp_input_method_v1::ZwpInputMethodV1
source · [−]pub struct ZwpInputMethodV1 { /* private fields */ }
unstable
and server
only.Expand description
input method
An input method object is responsible for composing text in response to input from hardware or virtual keyboards. There is one input method object per seat. On activate there is a new input method context object created which allows the input method to communicate with the text input.
This interface has no requests.
Implementations
sourceimpl ZwpInputMethodV1
impl ZwpInputMethodV1
sourcepub fn activate(&self, id: &ZwpInputMethodContextV1)
pub fn activate(&self, id: &ZwpInputMethodContextV1)
activate event
A text input was activated. Creates an input method context object which allows communication with the text input.
sourcepub fn deactivate(&self, context: &ZwpInputMethodContextV1)
pub fn deactivate(&self, context: &ZwpInputMethodContextV1)
deactivate event
The text input corresponding to the context argument was deactivated. The input method context should be destroyed after deactivation is handled.
Trait Implementations
sourceimpl Clone for ZwpInputMethodV1
impl Clone for ZwpInputMethodV1
sourcefn clone(&self) -> ZwpInputMethodV1
fn clone(&self) -> ZwpInputMethodV1
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ZwpInputMethodV1
impl Debug for ZwpInputMethodV1
sourceimpl PartialEq<ZwpInputMethodV1> for ZwpInputMethodV1
impl PartialEq<ZwpInputMethodV1> for ZwpInputMethodV1
sourceimpl Resource for ZwpInputMethodV1
impl Resource for ZwpInputMethodV1
type Request = Request
type Event = Event
fn interface() -> &'static Interface
fn id(&self) -> ObjectId
fn version(&self) -> u32
fn data<U: 'static>(&self) -> Option<&U>
fn object_data(&self) -> Option<&Arc<dyn Any + Send + Sync>>
fn handle(&self) -> &WeakHandle
fn from_id(conn: &DisplayHandle, id: ObjectId) -> Result<Self, InvalidId>
fn send_event(&self, evt: Self::Event) -> Result<(), InvalidId>
fn parse_request(
conn: &DisplayHandle,
msg: Message<ObjectId>
) -> Result<(Self, Self::Request), DispatchError>
fn write_event(
&self,
conn: &DisplayHandle,
msg: Self::Event
) -> Result<Message<ObjectId>, InvalidId>
fn client_id(&self) -> Option<ClientId>
fn post_error(&self, code: impl Into<u32>, error: impl Into<String>)
impl Eq for ZwpInputMethodV1
Auto Trait Implementations
impl !RefUnwindSafe for ZwpInputMethodV1
impl Send for ZwpInputMethodV1
impl Sync for ZwpInputMethodV1
impl Unpin for ZwpInputMethodV1
impl !UnwindSafe for ZwpInputMethodV1
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
impl<T> Downcast for T where
T: Any,
impl<T> Downcast for T where
T: Any,
fn 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
fn 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
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. Read more
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. Read more