aboutsummaryrefslogtreecommitdiff
path: root/vendor/generic/metrics/src/sys/windows.rs
blob: 0aedb5c51da3118c6c437f2c63d4c1e4a2b3a715 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2022 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

use win_util::ProcessType;

use crate::protos::event_details::EmulatorProcessType;

impl From<ProcessType> for EmulatorProcessType {
    fn from(process_type: ProcessType) -> Self {
        match process_type {
            ProcessType::Block => EmulatorProcessType::PROCESS_TYPE_BLOCK,
            ProcessType::Main => EmulatorProcessType::PROCESS_TYPE_MAIN,
            ProcessType::Metrics => EmulatorProcessType::PROCESS_TYPE_METRICS,
            ProcessType::Net => EmulatorProcessType::PROCESS_TYPE_NET,
            ProcessType::Slirp => EmulatorProcessType::PROCESS_TYPE_SLIRP,
            ProcessType::Gpu => EmulatorProcessType::PROCESS_TYPE_GPU,
            ProcessType::Snd => EmulatorProcessType::PROCESS_TYPE_SOUND,
            ProcessType::Broker => EmulatorProcessType::PROCESS_TYPE_BROKER,
            ProcessType::Spu => EmulatorProcessType::PROCESS_TYPE_SPU,
            ProcessType::UnknownType => panic!("Unknown process type found"),
        }
    }
}