struct AppliedPlan {
action: ActionKind,
effect: Effect,
plan: Plan,
note_elided: bool,
clamped: Option<Deferral>,
entered_backpressure: bool,
}Expand description
An admitted action, before its event is emitted.
Fields§
§action: ActionKind§effect: Effect§plan: Plan§note_elided: bool§clamped: Option<Deferral>§entered_backpressure: boolImplementations§
Source§impl AppliedPlan
impl AppliedPlan
fn simple(action: ActionKind, effect: Effect, plan: Plan) -> Self
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for AppliedPlan
impl RefUnwindSafe for AppliedPlan
impl Send for AppliedPlan
impl Sync for AppliedPlan
impl Unpin for AppliedPlan
impl UnsafeUnpin for AppliedPlan
impl UnwindSafe for AppliedPlan
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