Struct icu_plurals::provider::PluralElementsPackedULE

source ·
pub struct PluralElementsPackedULE<V: VarULE + ?Sized> { /* private fields */ }
Expand description

A bitpacked DST for PluralElements.

Can be put in a Cow or a [VarZeroSlice].

Implementations§

source§

impl<V> PluralElementsPackedULE<V>
where V: VarULE + ?Sized,

source

pub const unsafe fn from_byte_slice_unchecked(bytes: &[u8]) -> &Self

Casts a byte slice to a PluralElementsPackedULE.

§Safety

The bytes must be valid according to PluralElementsPackedULE::validate_byte_slice.

source

pub fn get<'a>( &'a self, op: PluralOperands, rules: &PluralRules, ) -> (FourBitMetadata, &'a V)

Returns the value for the given PluralOperands and PluralRules.

Trait Implementations§

source§

impl<'a, V> Bake for &'a PluralElementsPackedULE<V>
where &'a V: Bake, V: VarULE + ?Sized,

source§

fn bake(&self, ctx: &CrateEnv) -> TokenStream

Returns a TokenStream that would evaluate to self. Read more
source§

impl<'a, V> BakeSize for &'a PluralElementsPackedULE<V>
where &'a V: Bake, V: VarULE + ?Sized,

source§

fn borrows_size(&self) -> usize

Returns the size
source§

impl<V: Debug + VarULE + ?Sized> Debug for PluralElementsPackedULE<V>

source§

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

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

impl<'de, 'data, V> Deserialize<'de> for &'data PluralElementsPackedULE<V>
where V: VarULE + ?Sized, 'de: 'data,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<'de, V> Deserialize<'de> for Box<PluralElementsPackedULE<V>>
where V: VarULE + ?Sized, Box<V>: Deserialize<'de> + PartialEq + Debug,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<T, V> EncodeAsVarULE<PluralElementsPackedULE<V>> for PluralElements<(FourBitMetadata, T)>
where T: PartialEq + Debug, for<'a> &'a T: EncodeAsVarULE<V>, V: VarULE + ?Sized,

source§

fn encode_var_ule_as_slices<R>(&self, _cb: impl FnOnce(&[&[u8]]) -> R) -> R

Calls cb with a piecewise list of byte slices that when concatenated produce the memory pattern of the corresponding instance of T. Read more
source§

fn encode_var_ule_len(&self) -> usize

Return the length, in bytes, of the corresponding [VarULE] type
source§

fn encode_var_ule_write(&self, dst: &mut [u8])

Write the corresponding [VarULE] type to the dst buffer. dst should be the size of [Self::encode_var_ule_len()]
source§

impl<V: PartialEq + VarULE + ?Sized> PartialEq for PluralElementsPackedULE<V>

source§

fn eq(&self, other: &PluralElementsPackedULE<V>) -> bool

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

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

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

impl<V> Serialize for PluralElementsPackedULE<V>
where V: PartialEq + Serialize + VarULE + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<V: VarULE + ?Sized> ToOwned for PluralElementsPackedULE<V>

§

type Owned = Box<PluralElementsPackedULE<V>>

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> Self::Owned

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

fn clone_into(&self, target: &mut Self::Owned)

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

impl<V> VarULE for PluralElementsPackedULE<V>
where V: VarULE + ?Sized,

source§

fn validate_byte_slice(bytes: &[u8]) -> Result<(), UleError>

Validates a byte slice, &[u8]. Read more
source§

unsafe fn from_byte_slice_unchecked(bytes: &[u8]) -> &Self

Takes a byte slice, &[u8], and return it as &Self with the same lifetime, assuming that this byte slice has previously been run through [Self::parse_byte_slice()] with success. Read more
§

fn parse_byte_slice(bytes: &[u8]) -> Result<&Self, UleError>

Parses a byte slice, &[u8], and return it as &Self with the same lifetime. Read more
§

fn as_byte_slice(&self) -> &[u8]

Given &Self, returns a &[u8] with the same lifetime. Read more
§

fn to_boxed(&self) -> Box<Self>

Allocate on the heap as a Box<T>
source§

impl<V: Eq + VarULE + ?Sized> Eq for PluralElementsPackedULE<V>

source§

impl<V: VarULE + ?Sized> StructuralPartialEq for PluralElementsPackedULE<V>

Auto Trait Implementations§

§

impl<V> Freeze for PluralElementsPackedULE<V>
where V: ?Sized,

§

impl<V> RefUnwindSafe for PluralElementsPackedULE<V>
where V: RefUnwindSafe + ?Sized,

§

impl<V> Send for PluralElementsPackedULE<V>
where V: Send + ?Sized,

§

impl<V> !Sized for PluralElementsPackedULE<V>

§

impl<V> Sync for PluralElementsPackedULE<V>
where V: Sync + ?Sized,

§

impl<V> Unpin for PluralElementsPackedULE<V>
where V: Unpin + ?Sized,

§

impl<V> UnwindSafe for PluralElementsPackedULE<V>
where V: UnwindSafe + ?Sized,

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
§

impl<T> EncodeAsVarULE<T> for T
where T: VarULE + ?Sized,

§

fn encode_var_ule_as_slices<R>(&self, cb: impl FnOnce(&[&[u8]]) -> R) -> R

Calls cb with a piecewise list of byte slices that when concatenated produce the memory pattern of the corresponding instance of T. Read more
§

fn encode_var_ule_len(&self) -> usize

Return the length, in bytes, of the corresponding [VarULE] type
§

fn encode_var_ule_write(&self, dst: &mut [u8])

Write the corresponding [VarULE] type to the dst buffer. dst should be the size of [Self::encode_var_ule_len()]
source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>