Run the actor
(self: Box<Self>, _: Context, _: ResourceCollection)
| 52 | pub trait Actor: Node + Send + 'static { |
| 53 | /// Run the actor |
| 54 | fn start(self: Box<Self>, _: Context, _: ResourceCollection) -> JoinHandle<Result<()>> { |
| 55 | unimplemented!() |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | pub(crate) fn load_static( |
nothing calls this directly
no outgoing calls
no test coverage detected