pub enum Command {
SendKeyboardInput(SendKeyboardInputCmd),
SendPointerInput(SendPointerInputCmd),
SetHardKeyboardDelivery(SetHardKeyboardDeliveryCmd),
SetParallelDispatch(SetParallelDispatchCmd),
}Variants§
SendKeyboardInput(SendKeyboardInputCmd)
SendPointerInput(SendPointerInputCmd)
SetHardKeyboardDelivery(SetHardKeyboardDeliveryCmd)
SetParallelDispatch(SetParallelDispatchCmd)
Trait Implementations§
impl Copy for Command
Source§impl<___E> Encode<Command<'static>, ___E> for Commandwhere
___E: InternalHandleEncoder + Encoder + ?Sized,
impl<___E> Encode<Command<'static>, ___E> for Commandwhere
___E: InternalHandleEncoder + Encoder + ?Sized,
Source§impl<'a, ___E> Encode<Command<'static>, ___E> for &'a Commandwhere
___E: InternalHandleEncoder + Encoder + ?Sized,
impl<'a, ___E> Encode<Command<'static>, ___E> for &'a Commandwhere
___E: InternalHandleEncoder + Encoder + ?Sized,
Source§impl<'de> FromWireRef<Command<'de>> for Command
impl<'de> FromWireRef<Command<'de>> for Command
Source§fn from_wire_ref(wire: &Command<'de>) -> Command
fn from_wire_ref(wire: &Command<'de>) -> Command
Converts the given reference to this type.
Source§impl PartialOrd for Command
impl PartialOrd for Command
impl StructuralPartialEq for Command
Auto Trait Implementations§
impl Freeze for Command
impl RefUnwindSafe for Command
impl Send for Command
impl Sync for Command
impl Unpin for Command
impl UnsafeUnpin for Command
impl UnwindSafe for Command
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T, W> FromWireOption<Box<'_, W>> for Twhere
T: FromWire<W>,
impl<T, W> FromWireOption<Box<'_, W>> for Twhere
T: FromWire<W>,
§fn from_wire_option(wire: Box<'_, W>) -> Option<T>
fn from_wire_option(wire: Box<'_, W>) -> Option<T>
Converts the given owned value to an option of this type.
§impl<T, W> FromWireOptionRef<Box<'_, W>> for Twhere
T: FromWireRef<W>,
impl<T, W> FromWireOptionRef<Box<'_, W>> for Twhere
T: FromWireRef<W>,
§fn from_wire_option_ref(wire: &Box<'_, W>) -> Option<T>
fn from_wire_option_ref(wire: &Box<'_, W>) -> Option<T>
Converts the given reference to an option of this type.
§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]