sensors_lib/utils.rs
1// Copyright 2024 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 fidl_fuchsia_sensors_types::SensorInfo;
6
7pub fn is_sensor_valid(sensor: &SensorInfo) -> bool {
8 return sensor.sensor_id.is_some()
9 && sensor.sensor_type.is_some()
10 && sensor.wake_up.is_some()
11 && sensor.reporting_mode.is_some();
12}