Struct icu_provider::any::DowncastingAnyProvider
source · pub struct DowncastingAnyProvider<'a, P: ?Sized>(pub &'a P);
Expand description
A wrapper over AnyProvider
that implements DynamicDataProvider<M>
via downcasting
Tuple Fields§
§0: &'a P
Trait Implementations§
source§impl<M, P> DataProvider<M> for DowncastingAnyProvider<'_, P>where
P: AnyProvider + ?Sized,
M: DataMarker,
for<'a> YokeTraitHack<<M::DataStruct as Yokeable<'a>>::Output>: Clone,
M::DataStruct: ZeroFrom<'static, M::DataStruct> + MaybeSendSync,
impl<M, P> DataProvider<M> for DowncastingAnyProvider<'_, P>where
P: AnyProvider + ?Sized,
M: DataMarker,
for<'a> YokeTraitHack<<M::DataStruct as Yokeable<'a>>::Output>: Clone,
M::DataStruct: ZeroFrom<'static, M::DataStruct> + MaybeSendSync,
source§fn load(&self, req: DataRequest<'_>) -> Result<DataResponse<M>, DataError>
fn load(&self, req: DataRequest<'_>) -> Result<DataResponse<M>, DataError>
Query the provider for data, returning the result. Read more
source§impl<M, P> DynamicDataProvider<M> for DowncastingAnyProvider<'_, P>where
P: AnyProvider + ?Sized,
M: DynamicDataMarker,
for<'a> YokeTraitHack<<M::DataStruct as Yokeable<'a>>::Output>: Clone,
M::DataStruct: ZeroFrom<'static, M::DataStruct> + MaybeSendSync,
impl<M, P> DynamicDataProvider<M> for DowncastingAnyProvider<'_, P>where
P: AnyProvider + ?Sized,
M: DynamicDataMarker,
for<'a> YokeTraitHack<<M::DataStruct as Yokeable<'a>>::Output>: Clone,
M::DataStruct: ZeroFrom<'static, M::DataStruct> + MaybeSendSync,
source§fn load_data(
&self,
marker: DataMarkerInfo,
req: DataRequest<'_>,
) -> Result<DataResponse<M>, DataError>
fn load_data( &self, marker: DataMarkerInfo, req: DataRequest<'_>, ) -> Result<DataResponse<M>, DataError>
Query the provider for data, returning the result. Read more
Auto Trait Implementations§
impl<'a, P> Freeze for DowncastingAnyProvider<'a, P>where
P: ?Sized,
impl<'a, P> RefUnwindSafe for DowncastingAnyProvider<'a, P>where
P: RefUnwindSafe + ?Sized,
impl<'a, P> Send for DowncastingAnyProvider<'a, P>
impl<'a, P> Sync for DowncastingAnyProvider<'a, P>
impl<'a, P> Unpin for DowncastingAnyProvider<'a, P>where
P: ?Sized,
impl<'a, P> UnwindSafe for DowncastingAnyProvider<'a, P>where
P: RefUnwindSafe + ?Sized,
Blanket Implementations§
source§impl<P> AsDeserializingBufferProvider for Pwhere
P: BufferProvider + ?Sized,
impl<P> AsDeserializingBufferProvider for Pwhere
P: BufferProvider + ?Sized,
source§fn as_deserializing(&self) -> DeserializingBufferProvider<'_, P>
fn as_deserializing(&self) -> DeserializingBufferProvider<'_, P>
Wrap this BufferProvider
in a DeserializingBufferProvider
.
This requires enabling the deserialization Cargo feature for the expected format(s):
deserialize_json
deserialize_postcard_1
deserialize_bincode_1
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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