• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

zbraniecki / icu4x / 17537320435

07 Sep 2025 05:00PM UTC coverage: 72.904% (-1.3%) from 74.164%
17537320435

push

github

web-flow
Export a zoneinfo64 const for testing (#6916)

This is useful for other crates for testing, and we vendor a copy of
this data already.

It's also easier for us to vendor it since the data is under the same
license. If temporal_rs wishes to vendor it the licensing situation gets
more complicated.

<!--
Thank you for your pull request to ICU4X!

Reminder: try to use [Conventional
Comments](https://conventionalcomments.org/) to make comments clearer.

Please see
https://github.com/unicode-org/icu4x/blob/main/CONTRIBUTING.md for
general
information on contributing to ICU4X.
-->

1 of 1 new or added line in 1 file covered. (100.0%)

9526 existing lines in 484 files now uncovered.

60429 of 82889 relevant lines covered (72.9%)

468973.11 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/provider/data/properties/data/property_binary_ids_binary_operator_v1.rs.data
1
// @generated
2
/// Implement `DataProvider<PropertyBinaryPatternSyntaxV1>` on the given struct using the data
3
/// hardcoded in this file. This allows the struct to be used with
4
/// `icu`'s `_unstable` constructors.
5
///
6
/// Using this implementation will embed the following data in the binary's data segment:
7
/// * 200B[^1] for the singleton data struct
8
///
9
/// [^1]: these numbers can be smaller in practice due to linker deduplication
10
///
11
/// This macro requires the following crates:
12
/// * `icu`
13
/// * `icu_provider`
14
/// * `zerovec`
15
#[doc(hidden)]
16
#[macro_export]
17
macro_rules! __impl_property_binary_pattern_syntax_v1 {
18
    ($ provider : ty) => {
19
        #[clippy::msrv = "1.82"]
20
        const _: () = <$provider>::MUST_USE_MAKE_PROVIDER_MACRO;
21
        #[clippy::msrv = "1.82"]
22
        impl $provider {
23
            #[doc(hidden)]
24
            pub const SINGLETON_PROPERTY_BINARY_PATTERN_SYNTAX_V1: &'static <icu::properties::provider::PropertyBinaryPatternSyntaxV1 as icu_provider::DynamicDataMarker>::DataStruct = &icu::properties::provider::PropertyCodePointSet::InversionList(unsafe {
25
                #[allow(unused_unsafe)]
26
                icu::collections::codepointinvlist::CodePointInversionList::from_parts_unchecked(unsafe { zerovec::ZeroVec::from_bytes_unchecked(b"!\0\x000\0\0:\0\0A\0\0[\0\0_\0\0`\0\0a\0\0{\0\0\x7F\0\0\xA1\0\0\xA8\0\0\xA9\0\0\xAA\0\0\xAB\0\0\xAD\0\0\xAE\0\0\xAF\0\0\xB0\0\0\xB2\0\0\xB6\0\0\xB7\0\0\xBB\0\0\xBC\0\0\xBF\0\0\xC0\0\0\xD7\0\0\xD8\0\0\xF7\0\0\xF8\0\0\x10 \0( \x000 \0? \0A \0T \0U \0_ \0\x90!\0`$\0\0%\0v'\0\x94'\0\0,\0\0.\0\x80.\0\x010\0\x040\0\x080\0!0\x0000\x0010\0>\xFD\0@\xFD\0E\xFE\0G\xFE\0") }, 2760u32)
27
            });
28
        }
29
        #[clippy::msrv = "1.82"]
30
        impl icu_provider::DataProvider<icu::properties::provider::PropertyBinaryPatternSyntaxV1> for $provider {
UNCOV
31
            fn load(&self, req: icu_provider::DataRequest) -> Result<icu_provider::DataResponse<icu::properties::provider::PropertyBinaryPatternSyntaxV1>, icu_provider::DataError> {
×
32
                if req.id.locale.is_unknown() {
×
UNCOV
33
                    Ok(icu_provider::DataResponse { payload: icu_provider::DataPayload::from_static_ref(Self::SINGLETON_PROPERTY_BINARY_PATTERN_SYNTAX_V1), metadata: icu_provider::DataResponseMetadata::default() })
×
34
                } else {
UNCOV
35
                    Err(icu_provider::DataErrorKind::InvalidRequest.with_req(<icu::properties::provider::PropertyBinaryPatternSyntaxV1 as icu_provider::DataMarker>::INFO, req))
×
36
                }
UNCOV
37
            }
×
38
        }
39
    };
40
    ($ provider : ty , ITER) => {
41
        __impl_property_binary_pattern_syntax_v1!($provider);
42
        #[clippy::msrv = "1.82"]
43
        impl icu_provider::IterableDataProvider<icu::properties::provider::PropertyBinaryPatternSyntaxV1> for $provider {
44
            fn iter_ids(&self) -> Result<std::collections::BtreeSet<icu_provider::DataIdentifierCow<'static>>, icu_provider::DataError> {
45
                Ok([Default::default()].into_iter().collect())
46
            }
47
        }
48
    };
49
    ($ provider : ty , DRY) => {
50
        __impl_property_binary_pattern_syntax_v1!($provider);
51
        #[clippy::msrv = "1.82"]
52
        impl icu_provider::DryDataProvider<icu::properties::provider::PropertyBinaryPatternSyntaxV1> for $provider {
53
            fn dry_load(&self, req: icu_provider::DataRequest) -> Result<icu_provider::DataResponseMetadata, icu_provider::DataError> {
54
                if req.id.locale.is_unknown() {
55
                    Ok(icu_provider::DataResponseMetadata::default())
56
                } else {
57
                    Err(icu_provider::DataErrorKind::InvalidRequest.with_req(<icu::properties::provider::PropertyBinaryPatternSyntaxV1 as icu_provider::DataMarker>::INFO, req))
58
                }
59
            }
60
        }
61
    };
62
    ($ provider : ty , DRY , ITER) => {
63
        __impl_property_binary_pattern_syntax_v1!($provider);
64
        #[clippy::msrv = "1.82"]
65
        impl icu_provider::DryDataProvider<icu::properties::provider::PropertyBinaryPatternSyntaxV1> for $provider {
66
            fn dry_load(&self, req: icu_provider::DataRequest) -> Result<icu_provider::DataResponseMetadata, icu_provider::DataError> {
67
                if req.id.locale.is_unknown() {
68
                    Ok(icu_provider::DataResponseMetadata::default())
69
                } else {
70
                    Err(icu_provider::DataErrorKind::InvalidRequest.with_req(<icu::properties::provider::PropertyBinaryPatternSyntaxV1 as icu_provider::DataMarker>::INFO, req))
71
                }
72
            }
73
        }
74
        #[clippy::msrv = "1.82"]
75
        impl icu_provider::IterableDataProvider<icu::properties::provider::PropertyBinaryPatternSyntaxV1> for $provider {
76
            fn iter_ids(&self) -> Result<std::collections::BtreeSet<icu_provider::DataIdentifierCow<'static>>, icu_provider::DataError> {
77
                Ok([Default::default()].into_iter().collect())
78
            }
79
        }
80
    };
81
}
82
#[doc(inline)]
83
pub use __impl_property_binary_pattern_syntax_v1 as impl_property_binary_pattern_syntax_v1;
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc