pub struct EmitDynamicTrigger<T, Targets: TriggerTargets = ()> { /* private fields */ }
Expand description
Emit a trigger for a dynamic component id. This is unsafe and must be verified manually.
Implementations§
Source§impl<E, Targets: TriggerTargets> EmitDynamicTrigger<E, Targets>
impl<E, Targets: TriggerTargets> EmitDynamicTrigger<E, Targets>
Sourcepub unsafe fn new_with_id(
event_type: ComponentId,
event_data: E,
targets: Targets,
) -> Self
pub unsafe fn new_with_id( event_type: ComponentId, event_data: E, targets: Targets, ) -> Self
Sets the event type of the resulting trigger, used for dynamic triggers
§Safety
Caller must ensure that the component associated with event_type
is accessible as E
Trait Implementations§
Auto Trait Implementations§
impl<T, Targets> Freeze for EmitDynamicTrigger<T, Targets>
impl<T, Targets> RefUnwindSafe for EmitDynamicTrigger<T, Targets>where
T: RefUnwindSafe,
Targets: RefUnwindSafe,
impl<T, Targets> Send for EmitDynamicTrigger<T, Targets>where
T: Send,
impl<T, Targets> Sync for EmitDynamicTrigger<T, Targets>where
T: Sync,
impl<T, Targets> Unpin for EmitDynamicTrigger<T, Targets>
impl<T, Targets> UnwindSafe for EmitDynamicTrigger<T, Targets>where
T: UnwindSafe,
Targets: UnwindSafe,
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