pub struct ImeServiceGetInputMethodEditorRequest<T0, T1, T2, T3, T4> {
pub keyboard_type: T0,
pub action: T1,
pub initial_state: T2,
pub client: T3,
pub editor: T4,
}Expand description
The generic type corresponding to ImeServiceGetInputMethodEditorRequest.
Fields§
§keyboard_type: T0§action: T1§initial_state: T2§client: T3§editor: T4Trait Implementations§
Source§impl<___E, T0, T1, T2, T3, T4> Encode<ImeServiceGetInputMethodEditorRequest<'static>, ___E> for ImeServiceGetInputMethodEditorRequest<T0, T1, T2, T3, T4>where
___E: InternalHandleEncoder + ?Sized + Encoder + HandleEncoder,
T0: Encode<KeyboardType, ___E>,
T1: Encode<InputMethodAction, ___E>,
T2: Encode<TextInputState<'static>, ___E>,
T3: Encode<ClientEnd<InputMethodEditorClient, Channel>, ___E>,
T4: Encode<ServerEnd<InputMethodEditor, Channel>, ___E>,
impl<___E, T0, T1, T2, T3, T4> Encode<ImeServiceGetInputMethodEditorRequest<'static>, ___E> for ImeServiceGetInputMethodEditorRequest<T0, T1, T2, T3, T4>where
___E: InternalHandleEncoder + ?Sized + Encoder + HandleEncoder,
T0: Encode<KeyboardType, ___E>,
T1: Encode<InputMethodAction, ___E>,
T2: Encode<TextInputState<'static>, ___E>,
T3: Encode<ClientEnd<InputMethodEditorClient, Channel>, ___E>,
T4: Encode<ServerEnd<InputMethodEditor, Channel>, ___E>,
Source§fn encode(
self,
encoder_: &mut ___E,
out_: &mut MaybeUninit<ImeServiceGetInputMethodEditorRequest<'static>>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder_: &mut ___E, out_: &mut MaybeUninit<ImeServiceGetInputMethodEditorRequest<'static>>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
Auto Trait Implementations§
impl<T0, T1, T2, T3, T4> Freeze for ImeServiceGetInputMethodEditorRequest<T0, T1, T2, T3, T4>
impl<T0, T1, T2, T3, T4> RefUnwindSafe for ImeServiceGetInputMethodEditorRequest<T0, T1, T2, T3, T4>where
T0: RefUnwindSafe,
T1: RefUnwindSafe,
T2: RefUnwindSafe,
T3: RefUnwindSafe,
T4: RefUnwindSafe,
impl<T0, T1, T2, T3, T4> Send for ImeServiceGetInputMethodEditorRequest<T0, T1, T2, T3, T4>
impl<T0, T1, T2, T3, T4> Sync for ImeServiceGetInputMethodEditorRequest<T0, T1, T2, T3, T4>
impl<T0, T1, T2, T3, T4> Unpin for ImeServiceGetInputMethodEditorRequest<T0, T1, T2, T3, T4>
impl<T0, T1, T2, T3, T4> UnsafeUnpin for ImeServiceGetInputMethodEditorRequest<T0, T1, T2, T3, T4>
impl<T0, T1, T2, T3, T4> UnwindSafe for ImeServiceGetInputMethodEditorRequest<T0, T1, T2, T3, T4>
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
§impl<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
Converts the given service transport handle of type
T to [Self]