blob: 08c8819633df27866a2b6ad6f744161ac69250ce [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
use serde::Deserialize;
#[derive(Deserialize, Debug)]
#[serde(untagged)]
pub enum LightSensorConfig {
VendorAndProduct { vendor_id: u32, product_id: u32 },
}