pub enum Command {
Empty(i32),
}Expand description
DO NOT USE - Retained for ABI stability in fuchsia.ui.scenic.Command
Variants§
Trait Implementations§
Source§impl<'a, ___E> Encode<Command, ___E> for &'a Commandwhere
___E: InternalHandleEncoder + ?Sized,
impl<'a, ___E> Encode<Command, ___E> for &'a Commandwhere
___E: InternalHandleEncoder + ?Sized,
Source§impl<___E> Encode<Command, ___E> for Commandwhere
___E: InternalHandleEncoder + ?Sized,
impl<___E> Encode<Command, ___E> for Commandwhere
___E: InternalHandleEncoder + ?Sized,
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.
Source§impl FromWireRef<Command> for Command
impl FromWireRef<Command> for Command
Source§fn from_wire_ref(wire: &Command) -> Self
fn from_wire_ref(wire: &Command) -> Self
Converts the given reference to this type.
Source§impl Ord for Command
impl Ord for Command
Source§impl PartialOrd for Command
impl PartialOrd for Command
impl Copy for Command
impl Eq 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]