summaryrefslogtreecommitdiffstats
path: root/third_party/rust/icu_properties_data/data/macros/props_loe_v1.rs.data
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/icu_properties_data/data/macros/props_loe_v1.rs.data')
-rw-r--r--third_party/rust/icu_properties_data/data/macros/props_loe_v1.rs.data30
1 files changed, 30 insertions, 0 deletions
diff --git a/third_party/rust/icu_properties_data/data/macros/props_loe_v1.rs.data b/third_party/rust/icu_properties_data/data/macros/props_loe_v1.rs.data
new file mode 100644
index 0000000000..e6b3d7b521
--- /dev/null
+++ b/third_party/rust/icu_properties_data/data/macros/props_loe_v1.rs.data
@@ -0,0 +1,30 @@
+// @generated
+/// Implement `DataProvider<LogicalOrderExceptionV1Marker>` on the given struct using the data
+/// hardcoded in this file. This allows the struct to be used with
+/// `icu`'s `_unstable` constructors.
+#[doc(hidden)]
+#[macro_export]
+macro_rules! __impl_props_loe_v1 {
+ ($ provider : ty) => {
+ #[clippy::msrv = "1.67"]
+ const _: () = <$provider>::MUST_USE_MAKE_PROVIDER_MACRO;
+ #[clippy::msrv = "1.67"]
+ impl $provider {
+ #[doc(hidden)]
+ pub const SINGLETON_PROPS_LOE_V1: &'static <icu::properties::provider::LogicalOrderExceptionV1Marker as icu_provider::DataMarker>::Yokeable = &icu::properties::provider::PropertyCodePointSetV1::InversionList(unsafe {
+ #[allow(unused_unsafe)]
+ icu::collections::codepointinvlist::CodePointInversionList::from_parts_unchecked(unsafe { zerovec::ZeroVec::from_bytes_unchecked(b"@\x0E\0\0E\x0E\0\0\xC0\x0E\0\0\xC5\x0E\0\0\xB5\x19\0\0\xB8\x19\0\0\xBA\x19\0\0\xBB\x19\0\0\xB5\xAA\0\0\xB7\xAA\0\0\xB9\xAA\0\0\xBA\xAA\0\0\xBB\xAA\0\0\xBD\xAA\0\0") }, 19u32)
+ });
+ }
+ #[clippy::msrv = "1.67"]
+ impl icu_provider::DataProvider<icu::properties::provider::LogicalOrderExceptionV1Marker> for $provider {
+ fn load(&self, req: icu_provider::DataRequest) -> Result<icu_provider::DataResponse<icu::properties::provider::LogicalOrderExceptionV1Marker>, icu_provider::DataError> {
+ if req.locale.is_empty() {
+ Ok(icu_provider::DataResponse { payload: Some(icu_provider::DataPayload::from_static_ref(Self::SINGLETON_PROPS_LOE_V1)), metadata: Default::default() })
+ } else {
+ Err(icu_provider::DataErrorKind::ExtraneousLocale.with_req(<icu::properties::provider::LogicalOrderExceptionV1Marker as icu_provider::KeyedDataMarker>::KEY, req))
+ }
+ }
+ }
+ };
+}