const std = @import("std"); const Debouncer = @This(); /// Thread-safe. To be called when a new event comes in pub fn newEvent(d: *Debouncer) void { _ = d; }