1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright (C) Gear Technologies Inc.
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
//! Module for toggler/flag implementation.
//!
//! Toggler provides API for allowing or denying actions.
//! Could be used to branch logic by toggler condition.
use crateValueStorage;
use PhantomData;
/// Represents logic of providing access for some actions.
/// `Toggler` implementation based on `ValueStorage`.
;
// `Toggler` implementation over `ValueStorage` of `bool` storing type.