struct EE::SmallFunction::VTable

struct VTable {
    // fields

    void(* invoke)(SmallFunction &);
    void(* copy)(SmallFunction &, const SmallFunction &);
    void(* move)(SmallFunction &, SmallFunction &);
    void(* destroy)(SmallFunction &) noexcept;
};