pub struct EventInfo<B: SimBackend> {
pub canonical_id: usize,
pub is_cascaded: bool,
pub eval_ff_event: Option<B::Event>,
pub eval_only_event: Option<B::Event>,
pub apply_event: Option<B::Event>,
}Expand description
Runtime metadata for one event domain.
Fields§
§canonical_id: usize§is_cascaded: bool§eval_ff_event: Option<B::Event>§eval_only_event: Option<B::Event>§apply_event: Option<B::Event>Trait Implementations§
Source§impl<B: SimBackend> Clone for EventInfo<B>
impl<B: SimBackend> Clone for EventInfo<B>
impl<B: SimBackend> Copy for EventInfo<B>
Auto Trait Implementations§
impl<B> Freeze for EventInfo<B>
impl<B> RefUnwindSafe for EventInfo<B>
impl<B> Send for EventInfo<B>
impl<B> Sync for EventInfo<B>
impl<B> Unpin for EventInfo<B>
impl<B> UnsafeUnpin for EventInfo<B>
impl<B> UnwindSafe for EventInfo<B>
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