Struct icu_list::provider::ListFormatterPatternsV1
source ยท pub struct ListFormatterPatternsV1<'data>(pub [ConditionalListJoinerPattern<'data>; 12]);
Expand description
Symbols and metadata required for ListFormatter
.
๐ง This code is considered unstable; it may change at any time, in breaking or non-breaking ways,
including in SemVer minor releases. While the serde representation of data structs is guaranteed
to be stable, their Rust representation might not be. Use with caution.
Tuple Fieldsยง
ยง0: [ConditionalListJoinerPattern<'data>; 12]
The patterns in the order start, middle, end, pair, short_start, short_middle, short_end, short_pair, narrow_start, narrow_middle, narrow_end, narrow_pair,
Implementationsยง
sourceยงimpl<'data> ListFormatterPatternsV1<'data>
impl<'data> ListFormatterPatternsV1<'data>
sourcepub(crate) fn size_hint(&self, style: ListLength, len: usize) -> LengthHint
pub(crate) fn size_hint(&self, style: ListLength, len: usize) -> LengthHint
The range of the number of bytes required by the list literals to join a
list of length len
. If none of the patterns are conditional, this is exact.
sourceยงimpl<'data> ListFormatterPatternsV1<'data>
impl<'data> ListFormatterPatternsV1<'data>
pub(crate) fn start( &self, style: ListLength, ) -> &ConditionalListJoinerPattern<'data>
pub(crate) fn middle( &self, style: ListLength, ) -> &ConditionalListJoinerPattern<'data>
pub(crate) fn end( &self, style: ListLength, ) -> &ConditionalListJoinerPattern<'data>
pub(crate) fn pair( &self, style: ListLength, ) -> &ConditionalListJoinerPattern<'data>
Trait Implementationsยง
sourceยงimpl<'data> Clone for ListFormatterPatternsV1<'data>
impl<'data> Clone for ListFormatterPatternsV1<'data>
sourceยงfn clone(&self) -> ListFormatterPatternsV1<'data>
fn clone(&self) -> ListFormatterPatternsV1<'data>
Returns a copy of the value. Read more
1.0.0 ยท sourceยงfn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceยงimpl<'data> Debug for ListFormatterPatternsV1<'data>
impl<'data> Debug for ListFormatterPatternsV1<'data>
sourceยงimpl<'data> PartialEq for ListFormatterPatternsV1<'data>
impl<'data> PartialEq for ListFormatterPatternsV1<'data>
sourceยงfn eq(&self, other: &ListFormatterPatternsV1<'data>) -> bool
fn eq(&self, other: &ListFormatterPatternsV1<'data>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.sourceยงimpl<'a> Yokeable<'a> for ListFormatterPatternsV1<'static>
impl<'a> Yokeable<'a> for ListFormatterPatternsV1<'static>
ยงtype Output = ListFormatterPatternsV1<'a>
type Output = ListFormatterPatternsV1<'a>
This type MUST be
Self
with the 'static
replaced with 'a
, i.e. Self<'a>
sourceยงfn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
sourceยงimpl<'zf, 'zf_inner> ZeroFrom<'zf, ListFormatterPatternsV1<'zf_inner>> for ListFormatterPatternsV1<'zf>
impl<'zf, 'zf_inner> ZeroFrom<'zf, ListFormatterPatternsV1<'zf_inner>> for ListFormatterPatternsV1<'zf>
sourceยงfn zero_from(this: &'zf ListFormatterPatternsV1<'zf_inner>) -> Self
fn zero_from(this: &'zf ListFormatterPatternsV1<'zf_inner>) -> Self
Clone the other
C
into a struct that may retain references into C
.impl<'data> StructuralPartialEq for ListFormatterPatternsV1<'data>
Auto Trait Implementationsยง
impl<'data> Freeze for ListFormatterPatternsV1<'data>
impl<'data> RefUnwindSafe for ListFormatterPatternsV1<'data>
impl<'data> Send for ListFormatterPatternsV1<'data>
impl<'data> Sync for ListFormatterPatternsV1<'data>
impl<'data> Unpin for ListFormatterPatternsV1<'data>
impl<'data> UnwindSafe for ListFormatterPatternsV1<'data>
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