doc/wg/core/notes/core-notes-2021-01-29.md
dyn. Hudson pointed out this is an extra vtable lookup (more cycles) and suggested keep using generics for syscall driver types. So when should we use each? Is there a consensus? One might want to use generics for alarm where timing is of great importance.dyn types add a layer of indirection but dont result in different compilation artifacts for different instantiations of a type. Generics can also get unwieldy if several layers of generics depend on each others. This is an aesthetic question. How much generic nesting should we tolerate?dyn.dyn.dyn.try_restart function or restart should be exposed. When do you call each?try_restart has a policy in it and it invokes the policy before calling restart which is the mechanism.ProcessType decides the policy.ProcessType implements the policy. The code is specified by the board.ProcessType trait?