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 + ?Sized + Encoder,
impl<___E> Encode<Command<'static>, ___E> for Commandwhere
___E: InternalHandleEncoder + ?Sized + Encoder,
Source§impl<'a, ___E> Encode<Command<'static>, ___E> for &'a Commandwhere
___E: InternalHandleEncoder + ?Sized + Encoder,
impl<'a, ___E> Encode<Command<'static>, ___E> for &'a Commandwhere
___E: InternalHandleEncoder + ?Sized + Encoder,
Source§impl<___E> EncodeOption<Command<'static>, ___E> for Command
impl<___E> EncodeOption<Command<'static>, ___E> for Command
Source§fn encode_option(
this: Option<Self>,
encoder: &mut ___E,
out: &mut MaybeUninit<Command<'static>>,
_: (),
) -> Result<(), EncodeError>
fn encode_option( this: Option<Self>, encoder: &mut ___E, out: &mut MaybeUninit<Command<'static>>, _: (), ) -> Result<(), EncodeError>
Encodes this optional value into an encoder and output.
Source§impl<'a, ___E> EncodeOption<Command<'static>, ___E> for &'a Command
impl<'a, ___E> EncodeOption<Command<'static>, ___E> for &'a Command
Source§fn encode_option(
this: Option<Self>,
encoder: &mut ___E,
out: &mut MaybeUninit<Command<'static>>,
_: (),
) -> Result<(), EncodeError>
fn encode_option( this: Option<Self>, encoder: &mut ___E, out: &mut MaybeUninit<Command<'static>>, _: (), ) -> Result<(), EncodeError>
Encodes this optional value into an encoder and output.
Source§impl<'de> FromWireOption<Command<'de>> for Command
impl<'de> FromWireOption<Command<'de>> for Command
Source§fn from_wire_option(wire: Command<'de>) -> Option<Self>
fn from_wire_option(wire: Command<'de>) -> Option<Self>
Converts the given owned value to an option of this type.
Source§impl<'de> FromWireOption<Command<'de>> for Box<Command>
impl<'de> FromWireOption<Command<'de>> for Box<Command>
Source§fn from_wire_option(wire: Command<'de>) -> Option<Self>
fn from_wire_option(wire: Command<'de>) -> Option<Self>
Converts the given owned value to an option of this type.
Source§impl<'de> FromWireOptionRef<Command<'de>> for Box<Command>
impl<'de> FromWireOptionRef<Command<'de>> for Box<Command>
Source§fn from_wire_option_ref(wire: &Command<'de>) -> Option<Self>
fn from_wire_option_ref(wire: &Command<'de>) -> Option<Self>
Converts the given reference to an option of this type.
Source§impl<'de> FromWireRef<Command<'de>> for Command
impl<'de> FromWireRef<Command<'de>> for Command
Source§fn from_wire_ref(wire: &Command<'de>) -> Self
fn from_wire_ref(wire: &Command<'de>) -> Self
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]