Struct icu_provider::marker::NeverMarker

source ·
pub struct NeverMarker<Y>(PhantomData<Y>);
Expand description

A DataMarker that never returns data.

All types that have non-blanket impls of DataProvider<M> are expected to explicitly implement DataProvider<NeverMarker<Y>>, returning DataErrorKind::MissingDataKey. See impl_data_provider_never_marker!.

§Examples

use icu_locid::langid;
use icu_provider::hello_world::*;
use icu_provider::prelude::*;
use icu_provider::NeverMarker;

let buffer_provider = HelloWorldProvider.into_json_provider();

let result = DataProvider::<NeverMarker<HelloWorldV1<'static>>>::load(
    &buffer_provider.as_deserializing(),
    DataRequest {
        locale: &langid!("en").into(),
        metadata: Default::default(),
    },
);

assert!(matches!(
    result,
    Err(DataError {
        kind: DataErrorKind::MissingDataKey,
        ..
    })
));

Tuple Fields§

§0: PhantomData<Y>

Trait Implementations§

source§

impl<Y: Clone> Clone for NeverMarker<Y>

source§

fn clone(&self) -> NeverMarker<Y>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<Y> DataMarker for NeverMarker<Y>
where for<'a> Y: Yokeable<'a>,

§

type Yokeable = Y

A type that implements Yokeable. This should typically be the 'static version of a data struct.
source§

impl<Y: Debug> Debug for NeverMarker<Y>

source§

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

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

impl<Y> KeyedDataMarker for NeverMarker<Y>
where for<'a> Y: Yokeable<'a>,

source§

const KEY: DataKey = _

The single DataKey associated with this marker.
source§

fn bind<P>(provider: P) -> DataProviderWithKey<Self, P>
where P: DataProvider<Self>, Self: Sized,

Binds this KeyedDataMarker to a provider supporting it.
source§

impl<Y: Copy> Copy for NeverMarker<Y>

Auto Trait Implementations§

§

impl<Y> Freeze for NeverMarker<Y>

§

impl<Y> RefUnwindSafe for NeverMarker<Y>
where Y: RefUnwindSafe,

§

impl<Y> Send for NeverMarker<Y>
where Y: Send,

§

impl<Y> Sync for NeverMarker<Y>
where Y: Sync,

§

impl<Y> Unpin for NeverMarker<Y>
where Y: Unpin,

§

impl<Y> UnwindSafe for NeverMarker<Y>
where Y: UnwindSafe,

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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>,

§

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.
source§

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

source§

impl<T> MaybeSendSync for T