chaste_types/quirks.rs
1// SPDX-FileCopyrightText: 2025 The Chaste Authors
2// SPDX-License-Identifier: Apache-2.0 OR BSD-2-Clause
3
4/// Sometimes behavior is a bit different between implementations.
5/// This is a pleister type to stick on top of these problems.
6#[derive(Debug, Clone, Copy)]
7#[non_exhaustive]
8pub enum QuirksMode {
9 Yarn(u8),
10}