pub type BehaviorActed<B> = Acted<<B as Behavior>::Addr, <B as Behavior>::Ph, <B as Behavior>::Sends, <B as Behavior>::Birth, <B as Behavior>::Error>;Expand description
The only successful effect shape admitted by a Behavior implementation.
Aliased Type§
pub enum BehaviorActed<B> {
Ok(Actions<<B as Behavior>::Addr, <B as Behavior>::Ph, <B as Behavior>::Sends, <B as Behavior>::Birth>),
Err(<B as Behavior>::Error),
}