pub struct Command { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<'a, ___E> EncodeOption<Command, ___E> for &'a Command
impl<'a, ___E> EncodeOption<Command, ___E> for &'a Command
Source§fn encode_option(
this: Option<Self>,
encoder: &mut ___E,
out: &mut MaybeUninit<Command>,
_: (),
) -> Result<(), EncodeError>
fn encode_option( this: Option<Self>, encoder: &mut ___E, out: &mut MaybeUninit<Command>, _: (), ) -> Result<(), EncodeError>
Encodes this optional value into an encoder and output.
Source§impl<___E> EncodeOption<Command, ___E> for Command
impl<___E> EncodeOption<Command, ___E> for Command
Source§fn encode_option(
this: Option<Self>,
encoder: &mut ___E,
out: &mut MaybeUninit<Command>,
_: (),
) -> Result<(), EncodeError>
fn encode_option( this: Option<Self>, encoder: &mut ___E, out: &mut MaybeUninit<Command>, _: (), ) -> Result<(), EncodeError>
Encodes this optional value into an encoder and output.
Source§impl FromWireOption<Command> for Box<Command>
impl FromWireOption<Command> for Box<Command>
Source§fn from_wire_option(wire: Command) -> Option<Self>
fn from_wire_option(wire: Command) -> Option<Self>
Converts the given owned value to an option of this type.
Source§impl FromWireOption<Command> for Command
impl FromWireOption<Command> for Command
Source§fn from_wire_option(wire: Command) -> Option<Self>
fn from_wire_option(wire: Command) -> Option<Self>
Converts the given owned value to an option of this type.
Source§impl FromWireOptionRef<Command> for Box<Command>
impl FromWireOptionRef<Command> for Box<Command>
Source§fn from_wire_option_ref(wire: &Command) -> Option<Self>
fn from_wire_option_ref(wire: &Command) -> Option<Self>
Converts the given reference to an option of this type.
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> 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]