pub(crate) struct EventInfo {
pending: AtomicBool,
tx: Sender<()>,
}Expand description
State for a specific event, whether a notification is pending delivery, and what listeners are registered.
Fields§
§pending: AtomicBool§tx: Sender<()>Trait Implementations§
Auto Trait Implementations§
impl !Freeze for EventInfo
impl RefUnwindSafe for EventInfo
impl Send for EventInfo
impl Sync for EventInfo
impl Unpin for EventInfo
impl UnsafeUnpin for EventInfo
impl UnwindSafe for EventInfo
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