sl4f_lib/system_metrics/types.rs
1// Copyright 2021 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5use serde::{Deserialize, Serialize};
6
7#[derive(Deserialize, Debug)]
8pub struct StartLoggingRequest {
9 pub interval_ms: u32,
10 pub duration_ms: u32,
11}
12
13#[derive(Deserialize, Debug)]
14pub struct StartLoggingForeverRequest {
15 pub interval_ms: u32,
16}
17
18#[derive(Serialize, Debug)]
19pub enum CpuLoadLoggerResult {
20 Success,
21}