On 7/3/25 7:12 PM, Daniel Almeida wrote:
+/// Callbacks for an IRQ handler. +pub trait Handler: Sync {I wonder if we should require ’static here too? Same for the Threaded trait.
You already have impl<T: Handler + 'static> Registration<T> which I think this is good enough.