1 2 3 4 5 6 7 8 9 10
// bindgen-flags: -- --target=x86_64-pc-win32 template<typename Method, bool Cancelable> struct nsRunnableMethodTraits; template<class C, typename R, bool Cancelable, typename... As> struct nsRunnableMethodTraits<R(C::*)(As...), Cancelable> { static const bool can_cancel = Cancelable; };