pub enum Target {
View(ViewRef),
}Expand description
The region in which dispatch is attempted for injected events. The particular dispatch policy is specified in |Config|.
Variants§
Trait Implementations§
Source§impl<___E> Encode<Target, ___E> for Targetwhere
___E: InternalHandleEncoder + ?Sized + HandleEncoder,
impl<___E> Encode<Target, ___E> for Targetwhere
___E: InternalHandleEncoder + ?Sized + HandleEncoder,
Source§impl<___E> EncodeOption<Target, ___E> for Target
impl<___E> EncodeOption<Target, ___E> for Target
Source§fn encode_option(
this: Option<Self>,
encoder: &mut ___E,
out: &mut MaybeUninit<Target>,
_: (),
) -> Result<(), EncodeError>
fn encode_option( this: Option<Self>, encoder: &mut ___E, out: &mut MaybeUninit<Target>, _: (), ) -> Result<(), EncodeError>
Encodes this optional value into an encoder and output.
Source§impl FromWireOption<Target> for Box<Target>
impl FromWireOption<Target> for Box<Target>
Source§fn from_wire_option(wire: Target) -> Option<Self>
fn from_wire_option(wire: Target) -> Option<Self>
Converts the given owned value to an option of this type.
Source§impl FromWireOption<Target> for Target
impl FromWireOption<Target> for Target
Source§fn from_wire_option(wire: Target) -> Option<Self>
fn from_wire_option(wire: Target) -> Option<Self>
Converts the given owned value to an option of this type.
impl StructuralPartialEq for Target
Auto Trait Implementations§
impl Freeze for Target
impl RefUnwindSafe for Target
impl Send for Target
impl Sync for Target
impl Unpin for Target
impl UnsafeUnpin for Target
impl UnwindSafe for Target
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, 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> 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]