pub struct Baked;
Expand description
Baked data
🚧 This code is considered unstable; it may change at any time, in breaking or non-breaking ways,
including in SemVer minor releases. In particular, the `DataProvider` implementations are only
guaranteed to match with this version's `*_unstable` providers. Use with caution.
Trait Implementations§
Source§impl<Y> DataProvider<NeverMarker<Y>> for Bakedwhere
Y: for<'a> Yokeable<'a>,
impl<Y> DataProvider<NeverMarker<Y>> for Bakedwhere
Y: for<'a> Yokeable<'a>,
Source§fn load(
&self,
req: DataRequest<'_>,
) -> Result<DataResponse<NeverMarker<Y>>, DataError>
fn load( &self, req: DataRequest<'_>, ) -> Result<DataResponse<NeverMarker<Y>>, DataError>
Query the provider for data, returning the result. Read more
Source§impl DataProvider<NormalizerNfcV1> for Baked
impl DataProvider<NormalizerNfcV1> for Baked
Source§fn load(
&self,
req: DataRequest<'_>,
) -> Result<DataResponse<NormalizerNfcV1>, DataError>
fn load( &self, req: DataRequest<'_>, ) -> Result<DataResponse<NormalizerNfcV1>, DataError>
Query the provider for data, returning the result. Read more
Source§impl DataProvider<NormalizerNfdDataV1> for Baked
impl DataProvider<NormalizerNfdDataV1> for Baked
Source§fn load(
&self,
req: DataRequest<'_>,
) -> Result<DataResponse<NormalizerNfdDataV1>, DataError>
fn load( &self, req: DataRequest<'_>, ) -> Result<DataResponse<NormalizerNfdDataV1>, DataError>
Query the provider for data, returning the result. Read more
Source§impl DataProvider<NormalizerNfdSupplementV1> for Baked
impl DataProvider<NormalizerNfdSupplementV1> for Baked
Source§fn load(
&self,
req: DataRequest<'_>,
) -> Result<DataResponse<NormalizerNfdSupplementV1>, DataError>
fn load( &self, req: DataRequest<'_>, ) -> Result<DataResponse<NormalizerNfdSupplementV1>, DataError>
Query the provider for data, returning the result. Read more
Source§impl DataProvider<NormalizerNfdTablesV1> for Baked
impl DataProvider<NormalizerNfdTablesV1> for Baked
Source§fn load(
&self,
req: DataRequest<'_>,
) -> Result<DataResponse<NormalizerNfdTablesV1>, DataError>
fn load( &self, req: DataRequest<'_>, ) -> Result<DataResponse<NormalizerNfdTablesV1>, DataError>
Query the provider for data, returning the result. Read more
Source§impl DataProvider<NormalizerNfkdDataV1> for Baked
impl DataProvider<NormalizerNfkdDataV1> for Baked
Source§fn load(
&self,
req: DataRequest<'_>,
) -> Result<DataResponse<NormalizerNfkdDataV1>, DataError>
fn load( &self, req: DataRequest<'_>, ) -> Result<DataResponse<NormalizerNfkdDataV1>, DataError>
Query the provider for data, returning the result. Read more
Source§impl DataProvider<NormalizerNfkdTablesV1> for Baked
impl DataProvider<NormalizerNfkdTablesV1> for Baked
Source§fn load(
&self,
req: DataRequest<'_>,
) -> Result<DataResponse<NormalizerNfkdTablesV1>, DataError>
fn load( &self, req: DataRequest<'_>, ) -> Result<DataResponse<NormalizerNfkdTablesV1>, DataError>
Query the provider for data, returning the result. Read more
Source§impl DataProvider<NormalizerUts46DataV1> for Baked
impl DataProvider<NormalizerUts46DataV1> for Baked
Source§fn load(
&self,
req: DataRequest<'_>,
) -> Result<DataResponse<NormalizerUts46DataV1>, DataError>
fn load( &self, req: DataRequest<'_>, ) -> Result<DataResponse<NormalizerUts46DataV1>, DataError>
Query the provider for data, returning the result. Read more
Auto Trait Implementations§
impl Freeze for Baked
impl RefUnwindSafe for Baked
impl Send for Baked
impl Sync for Baked
impl Unpin for Baked
impl UnwindSafe for Baked
Blanket Implementations§
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