fn _boilerplate()

in focus/tracing/src/git_trace2.rs [103:224]


    fn _boilerplate(&self) {
        match self {
            Event::Version(event::Version { common, evt, exe }) => todo!(),
            Event::TooManyFiles(event::TooManyFiles { common }) => todo!(),
            Event::Start(event::Start {
                common,
                t_abs,
                argv,
            }) => todo!(),
            Event::Exit(event::Exit {
                common,
                t_abs,
                code,
            }) => todo!(),
            Event::Atexit(event::Atexit {
                common,
                t_abs,
                code,
            }) => todo!(),
            Event::Signal(event::Signal {
                common,
                t_abs,
                signo,
            }) => todo!(),
            Event::Error(event::Error { common, msg, fmt }) => todo!(),
            Event::CmdPath(event::CmdPath { common, path }) => todo!(),
            Event::CmdAncestry(event::CmdAncestry { common, ancestry }) => todo!(),
            Event::CmdName(event::CmdName {
                common,
                name,
                hierarchy,
            }) => todo!(),
            Event::CmdMode(event::CmdMode { common, name }) => todo!(),
            Event::Alias(event::Alias {
                common,
                alias,
                argv,
            }) => todo!(),
            Event::ChildStart(event::ChildStart {
                common,
                child_id,
                child_class,
                use_shell,
                argv,
                hook_name,
                cd,
            }) => todo!(),
            Event::ChildExit(event::ChildExit {
                common,
                child_id,
                pid,
                code,
                t_rel,
            }) => todo!(),
            Event::ChildReady(event::ChildReady {
                common,
                child_id,
                pid,
                ready,
                t_rel,
            }) => todo!(),
            Event::Exec(event::Exec {
                common,
                exec_id,
                exe,
                argv,
            }) => todo!(),
            Event::ExecResult(event::ExecResult {
                common,
                exec_id,
                code,
            }) => todo!(),
            Event::ThreadStart(event::ThreadStart {
                common,
                thread_name,
            }) => todo!(),
            Event::ThreadExit(event::ThreadExit {
                common,
                thread_name,
                t_rel,
            }) => todo!(),
            Event::DefParam(event::DefParam {
                common,
                param,
                value,
            }) => todo!(),
            Event::DefRepo(event::DefRepo { common, worktree }) => todo!(),
            Event::RegionEnter(event::RegionEnter {
                common,
                nesting,
                category,
                label,
                msg,
            }) => todo!(),
            Event::RegionLeave(event::RegionLeave {
                common,
                t_rel,
                nesting,
                category,
                label,
                msg,
            }) => todo!(),
            Event::Data(event::Data {
                common,
                t_abs,
                t_rel,
                nesting,
                category,
                key,
                value,
            }) => todo!(),
            Event::DataJson(event::DataJson {
                common,
                t_abs,
                t_rel,
                nesting,
                category,
                key,
                value,
            }) => todo!(),
        }
    }