| 12 | use std::sync::atomic::{AtomicBool, Ordering}; |
| 13 | |
| 14 | pub struct Feature { |
| 15 | enable: AtomicBool, |
| 16 | lock_ops: Event, |
| 17 | } |
| 18 | |
| 19 | impl Feature { |
| 20 | pub const fn new() -> Feature { |
nothing calls this directly
no outgoing calls
no test coverage detected