Bug 1869647 - Mark hasStorageAccess.sub.https.window.html as intermittent after wpt...
[gecko.git] / intl / icu_capi / src / common.rs
blobd11ca260440a25eb934c00637684fb2b91b89593
1 // This file is part of ICU4X. For terms of use, please see the file
2 // called LICENSE at the top level of the ICU4X source tree
3 // (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).
5 #[diplomat::bridge]
6 pub mod ffi {
7     use alloc::boxed::Box;
9     #[diplomat::enum_convert(core::cmp::Ordering)]
10     #[diplomat::rust_link(core::cmp::Ordering, Enum)]
11     pub enum ICU4XOrdering {
12         Less = -1,
13         Equal = 0,
14         Greater = 1,
15     }