pub struct PoolBehaviorSends<A, D, J, R, C>where
A: Address,
A::Nonce: From<u64>,
D: Behavior<Addr = A, Msg = PoolResponse<J, R, A>>,
C: Behavior<Addr = A, Ph = Never>,{
pub responses: Vec<Delivery<D>>,
pub assignments: Vec<Delivery<Proxy<C>>>,
}Expand description
Named pool-owned delivery lanes.
Fields§
§responses: Vec<Delivery<D>>Admission and terminal responses addressed to submitters.
assignments: Vec<Delivery<Proxy<C>>>Assignments addressed to the selected stable worker proxies.
Trait Implementations§
Source§impl<A, D, J, R, C> SendAlgebra for PoolBehaviorSends<A, D, J, R, C>
impl<A, D, J, R, C> SendAlgebra for PoolBehaviorSends<A, D, J, R, C>
Auto Trait Implementations§
impl<A, D, J, R, C> Freeze for PoolBehaviorSends<A, D, J, R, C>
impl<A, D, J, R, C> RefUnwindSafe for PoolBehaviorSends<A, D, J, R, C>where
<A as Address>::Nonce: Sized + RefUnwindSafe,
J: RefUnwindSafe,
R: RefUnwindSafe,
<C as Behavior>::Msg: RefUnwindSafe,
C: RefUnwindSafe,
A: RefUnwindSafe,
impl<A, D, J, R, C> Send for PoolBehaviorSends<A, D, J, R, C>
impl<A, D, J, R, C> Sync for PoolBehaviorSends<A, D, J, R, C>
impl<A, D, J, R, C> Unpin for PoolBehaviorSends<A, D, J, R, C>
impl<A, D, J, R, C> UnsafeUnpin for PoolBehaviorSends<A, D, J, R, C>
impl<A, D, J, R, C> UnwindSafe for PoolBehaviorSends<A, D, J, R, C>where
<A as Address>::Nonce: Sized + UnwindSafe,
J: UnwindSafe,
R: UnwindSafe,
<C as Behavior>::Msg: UnwindSafe,
C: UnwindSafe,
A: 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