sl4f_lib/temperature/
types.rs

1// Copyright 2020 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 TemperatureRequest {
9    pub device_path: String,
10}
11
12#[derive(Deserialize, Debug)]
13pub struct StartLoggingRequest {
14    pub interval_ms: u32,
15    pub duration_ms: u32,
16}
17
18#[derive(Deserialize, Debug)]
19pub struct StartLoggingForeverRequest {
20    pub interval_ms: u32,
21}
22
23#[derive(Serialize, Debug)]
24pub enum TemperatureLoggerResult {
25    Success,
26}