settings/factory_reset/
types.rs

1// Copyright 2021 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(Debug, Copy, Clone, PartialEq, Eq, Serialize, Deserialize)]
8pub struct FactoryResetInfo {
9    pub is_local_reset_allowed: bool,
10}
11
12impl FactoryResetInfo {
13    pub const fn new(is_local_reset_allowed: bool) -> Self {
14        Self { is_local_reset_allowed }
15    }
16}