Struct fidl_fuchsia_ui_input::ImeServiceProxy
source · pub struct ImeServiceProxy { /* private fields */ }
Implementations§
source§impl ImeServiceProxy
impl ImeServiceProxy
sourcepub fn take_event_stream(&self) -> ImeServiceEventStream
pub fn take_event_stream(&self) -> ImeServiceEventStream
Get a Stream of events from the remote end of the ImeService protocol
Panics
Panics if the event stream was already taken.
pub fn get_input_method_editor( &self, keyboard_type: KeyboardType, action: InputMethodAction, initial_state: &mut TextInputState, client: ClientEnd<InputMethodEditorClientMarker>, editor: ServerEnd<InputMethodEditorMarker> ) -> Result<(), Error>
pub fn show_keyboard(&self) -> Result<(), Error>
pub fn hide_keyboard(&self) -> Result<(), Error>
Trait Implementations§
source§impl Clone for ImeServiceProxy
impl Clone for ImeServiceProxy
source§fn clone(&self) -> ImeServiceProxy
fn clone(&self) -> ImeServiceProxy
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 ImeServiceProxy
impl Debug for ImeServiceProxy
source§impl ImeServiceProxyInterface for ImeServiceProxy
impl ImeServiceProxyInterface for ImeServiceProxy
fn get_input_method_editor( &self, keyboard_type: KeyboardType, action: InputMethodAction, initial_state: &mut TextInputState, client: ClientEnd<InputMethodEditorClientMarker>, editor: ServerEnd<InputMethodEditorMarker> ) -> Result<(), Error>
fn show_keyboard(&self) -> Result<(), Error>
fn hide_keyboard(&self) -> Result<(), Error>
source§impl Proxy for ImeServiceProxy
impl Proxy for ImeServiceProxy
§type Protocol = ImeServiceMarker
type Protocol = ImeServiceMarker
The protocol which this
Proxy
controls.source§fn from_channel(inner: AsyncChannel) -> Self
fn from_channel(inner: AsyncChannel) -> Self
Create a proxy over the given channel.
source§fn into_channel(self) -> Result<AsyncChannel, Self>
fn into_channel(self) -> Result<AsyncChannel, Self>
Attempt to convert the proxy back into a channel. Read more
source§fn as_channel(&self) -> &AsyncChannel
fn as_channel(&self) -> &AsyncChannel
Get a reference to the proxy’s underlying channel. Read more