Source code
Revision control
Copy as Markdown
Other Tools
// @generated
/// Implement `DataProvider<PropertyBinaryPatternSyntaxV1>` on the given struct using the data
/// hardcoded in this file. This allows the struct to be used with
/// `icu`'s `_unstable` constructors.
///
/// Using this implementation will embed the following data in the binary's data segment:
/// * 200B[^1] for the singleton data struct
///
/// [^1]: these numbers can be smaller in practice due to linker deduplication
///
/// This macro requires the following crates:
/// * `icu`
/// * `icu_provider`
/// * `zerovec`
#[doc(hidden)]
#[macro_export]
macro_rules! __impl_property_binary_pattern_syntax_v1 {
($ provider : ty) => {
#[clippy::msrv = "1.82"]
const _: () = <$provider>::MUST_USE_MAKE_PROVIDER_MACRO;
#[clippy::msrv = "1.82"]
impl $provider {
#[doc(hidden)]
pub const SINGLETON_PROPERTY_BINARY_PATTERN_SYNTAX_V1: &'static <icu::properties::provider::PropertyBinaryPatternSyntaxV1 as icu_provider::DynamicDataMarker>::DataStruct = &icu::properties::provider::PropertyCodePointSet::InversionList(unsafe {
#[allow(unused_unsafe)]
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)
});
}
#[clippy::msrv = "1.82"]
impl icu_provider::DataProvider<icu::properties::provider::PropertyBinaryPatternSyntaxV1> for $provider {
fn load(&self, req: icu_provider::DataRequest) -> Result<icu_provider::DataResponse<icu::properties::provider::PropertyBinaryPatternSyntaxV1>, icu_provider::DataError> {
if req.id.locale.is_unknown() {
Ok(icu_provider::DataResponse { payload: icu_provider::DataPayload::from_static_ref(Self::SINGLETON_PROPERTY_BINARY_PATTERN_SYNTAX_V1), metadata: icu_provider::DataResponseMetadata::default() })
} else {
Err(icu_provider::DataErrorKind::InvalidRequest.with_req(<icu::properties::provider::PropertyBinaryPatternSyntaxV1 as icu_provider::DataMarker>::INFO, req))
}
}
}
};
($ provider : ty , ITER) => {
__impl_property_binary_pattern_syntax_v1!($provider);
#[clippy::msrv = "1.82"]
impl icu_provider::IterableDataProvider<icu::properties::provider::PropertyBinaryPatternSyntaxV1> for $provider {
fn iter_ids(&self) -> Result<std::collections::BtreeSet<icu_provider::DataIdentifierCow<'static>>, icu_provider::DataError> {
Ok([Default::default()].into_iter().collect())
}
}
};
($ provider : ty , DRY) => {
__impl_property_binary_pattern_syntax_v1!($provider);
#[clippy::msrv = "1.82"]
impl icu_provider::DryDataProvider<icu::properties::provider::PropertyBinaryPatternSyntaxV1> for $provider {
fn dry_load(&self, req: icu_provider::DataRequest) -> Result<icu_provider::DataResponseMetadata, icu_provider::DataError> {
if req.id.locale.is_unknown() {
Ok(icu_provider::DataResponseMetadata::default())
} else {
Err(icu_provider::DataErrorKind::InvalidRequest.with_req(<icu::properties::provider::PropertyBinaryPatternSyntaxV1 as icu_provider::DataMarker>::INFO, req))
}
}
}
};
($ provider : ty , DRY , ITER) => {
__impl_property_binary_pattern_syntax_v1!($provider);
#[clippy::msrv = "1.82"]
impl icu_provider::DryDataProvider<icu::properties::provider::PropertyBinaryPatternSyntaxV1> for $provider {
fn dry_load(&self, req: icu_provider::DataRequest) -> Result<icu_provider::DataResponseMetadata, icu_provider::DataError> {
if req.id.locale.is_unknown() {
Ok(icu_provider::DataResponseMetadata::default())
} else {
Err(icu_provider::DataErrorKind::InvalidRequest.with_req(<icu::properties::provider::PropertyBinaryPatternSyntaxV1 as icu_provider::DataMarker>::INFO, req))
}
}
}
#[clippy::msrv = "1.82"]
impl icu_provider::IterableDataProvider<icu::properties::provider::PropertyBinaryPatternSyntaxV1> for $provider {
fn iter_ids(&self) -> Result<std::collections::BtreeSet<icu_provider::DataIdentifierCow<'static>>, icu_provider::DataError> {
Ok([Default::default()].into_iter().collect())
}
}
};
}
#[doc(inline)]
pub use __impl_property_binary_pattern_syntax_v1 as impl_property_binary_pattern_syntax_v1;