pub struct TriggerEvent<E, Targets: TriggerTargets = ()> {
pub event: E,
pub targets: Targets,
}
Expand description
A Command
that emits a given trigger for a given set of targets.
Fields§
§event: E
The event to trigger.
targets: Targets
The targets to trigger the event for.
Trait Implementations§
Auto Trait Implementations§
impl<E, Targets> Freeze for TriggerEvent<E, Targets>
impl<E, Targets> RefUnwindSafe for TriggerEvent<E, Targets>where
E: RefUnwindSafe,
Targets: RefUnwindSafe,
impl<E, Targets> Send for TriggerEvent<E, Targets>where
E: Send,
impl<E, Targets> Sync for TriggerEvent<E, Targets>where
E: Sync,
impl<E, Targets> Unpin for TriggerEvent<E, Targets>
impl<E, Targets> UnwindSafe for TriggerEvent<E, Targets>where
E: 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