pub struct IdentifierNotFoundPredicate;
Expand description

A predicate that allows forking providers to search for a provider that supports a particular locale, based on whether it returns [DataErrorKind::IdentifierNotFound].

§Examples

use icu_provider_adapters::fork::ForkByErrorProvider;
use icu_provider_adapters::fork::predicates::IdentifierNotFoundPredicate;
use icu_provider::prelude::*;
use icu_provider::hello_world::*;
use icu_locale::langid;

struct SingleLocaleProvider(DataLocale);
impl DataProvider<HelloWorldV1Marker> for SingleLocaleProvider {
    fn load(&self, req: DataRequest) -> Result<DataResponse<HelloWorldV1Marker>, DataError> {
        if *req.id.locale != self.0 {
            return Err(DataErrorKind::IdentifierNotFound.with_req(HelloWorldV1Marker::INFO, req));
        }
        HelloWorldProvider.load(req)
    }
}

let provider_de = SingleLocaleProvider(langid!("de").into());
let provider_ro = SingleLocaleProvider(langid!("ro").into());

// Create the forking provider:
let provider = ForkByErrorProvider::new_with_predicate(
    provider_de,
    provider_ro,
    IdentifierNotFoundPredicate
);

// Test that we can load both "de" and "ro" data:

let german_hello_world: DataResponse<HelloWorldV1Marker> = provider
    .load(DataRequest {
        id: DataIdentifierBorrowed::for_locale(&langid!("de").into()),
        ..Default::default()
    })
    .expect("Loading should succeed");

assert_eq!("Hallo Welt", german_hello_world.payload.get().message);

let romanian_hello_world: DataResponse<HelloWorldV1Marker> = provider
    .load(DataRequest {
        id: DataIdentifierBorrowed::for_locale(&langid!("ro").into()),
        ..Default::default()
    })
    .expect("Loading should succeed");

assert_eq!("Salut, lume", romanian_hello_world.payload.get().message);

// We should not be able to load "en" data because it is not in either provider:

DataProvider::<HelloWorldV1Marker>::load(
    &provider,
    DataRequest {
        id: DataIdentifierBorrowed::for_locale(&langid!("en").into()),
        ..Default::default()
    }
)
.expect_err("No English data");

Trait Implementations§

source§

impl Debug for IdentifierNotFoundPredicate

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl ForkByErrorPredicate for IdentifierNotFoundPredicate

source§

const UNIT_ERROR: DataErrorKind = DataErrorKind::IdentifierNotFound

The error to return if there are zero providers.
source§

fn test( &self, _: DataMarkerInfo, _: Option<DataRequest<'_>>, err: DataError, ) -> bool

This function is called when a data request fails and there are additional providers that could possibly fulfill the request. Read more
source§

impl PartialEq for IdentifierNotFoundPredicate

source§

fn eq(&self, other: &IdentifierNotFoundPredicate) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for IdentifierNotFoundPredicate

source§

impl StructuralPartialEq for IdentifierNotFoundPredicate

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T
where T: Send + Sync,