fuchsiaperf/
lib.rs

1// Copyright 2023 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/// A struct that can be json serialized to the fuchsiaperf.json format.
8#[derive(Serialize, Deserialize, Debug, PartialEq)]
9pub struct FuchsiaPerfBenchmarkResult {
10    pub label: String,
11    pub test_suite: String,
12    pub unit: String,
13    pub values: Vec<f64>,
14}