sl4f_lib/power/types.rs
1// Copyright 2022 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 sampling_interval_ms: u32,
10 pub statistics_interval_ms: Option<u32>,
11 pub duration_ms: u32,
12}
13
14#[derive(Deserialize, Debug)]
15pub struct StartLoggingForeverRequest {
16 pub sampling_interval_ms: u32,
17 pub statistics_interval_ms: Option<u32>,
18}
19
20#[derive(Serialize, Debug)]
21pub enum RecorderResult {
22 Success,
23}