1 2 3 4 5 6 7 8 9
/// The module contains internal action wrapper. pub mod internal { use meio::prelude::Action; /// Wrapper for internal communications. pub struct Internal<T: Send + 'static>(pub T); impl<T: Send + 'static> Action for Internal<T> {} }