pub type Acted<A, Ph, Sends, Birth, E> = Result<Actions<A, Ph, Sends, Birth>, E>;
pub enum Acted<A, Ph, Sends, Birth, E> { Ok(Actions<A, Ph, Sends, Birth>), Err(E), }
Contains the success value
Contains the error value