Skip to main content

DeferredEffects

Struct DeferredEffects 

Source
pub(crate) struct DeferredEffects {
    q: VecDeque<Option<Deferred>>,
}
Expand description

The ProxyEvent::ActionApplied events owed at release, in queue order.

A sibling FIFO of PendingQueue rather than a field on Pending, because Pending is egress.rs’s type and reporting is not its concern — that module deliberately emits no events at all.

§The three-call discipline

Exactly one entry is pushed by execute on every PendingQueue::push, so self.len() == pending.len() at every point the caller can observe. In session.rs:

Fields§

§q: VecDeque<Option<Deferred>>

Implementations§

Source§

impl DeferredEffects

Source

pub(crate) fn new() -> Self

An empty ledger. Allocates nothing until the first push.

Source

pub(crate) fn len(&self) -> usize

How many entries are owed. Equal to PendingQueue::len().

Read only by the tests below, which assert exactly that equality — the three-call discipline is what the pipe loops use, and none of them needs a count. Kept rather than #[cfg(test)]d because the equality is the ledger’s whole invariant and a reader looking for it should find the accessor beside it.

Source

pub(crate) fn is_empty(&self) -> bool

Whether anything is owed. Tests only — see Self::len.

Source

pub(crate) fn pop(&mut self) -> Option<Deferred>

The entry for the unit that was just released.

Source

pub(crate) fn take_all(&mut self) -> Vec<Deferred>

Every entry still owed, in order. For a drain that completed.

Source

pub(crate) fn clear(&mut self)

Forget everything owed. For a drain that did not complete.

Source

fn push(&mut self, entry: Option<Deferred>)

Record one entry against one PendingQueue::push.

Trait Implementations§

Source§

impl Debug for DeferredEffects

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for DeferredEffects

Source§

fn default() -> DeferredEffects

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more