Struct icu_list::provider::ListJoinerPattern
source · pub struct ListJoinerPattern<'data> {
pub(crate) string: Cow<'data, str>,
pub(crate) index_0: u8,
pub(crate) index_1: u8,
}
Expand description
A pattern containing two numeric placeholders (“{0}, and {1}.”)
🚧 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.
Fields§
§string: Cow<'data, str>
The pattern string without the placeholders
index_0: u8
The index of the first placeholder. Always <= index_1.
index_1: u8
The index of the second placeholder. Always < string.len().
Implementations§
source§impl<'data> ListJoinerPattern<'data>
impl<'data> ListJoinerPattern<'data>
fn borrow_tuple(&'data self) -> (&'data str, &'data str, &'data str)
fn size_hint(&self) -> LengthHint
source§impl<'a> ListJoinerPattern<'a>
impl<'a> ListJoinerPattern<'a>
sourcepub const fn from_parts(string: &'a str, index_1: u8) -> Self
pub const fn from_parts(string: &'a str, index_1: u8) -> Self
Constructs a ListJoinerPattern
from raw parts. Used by databake.
§Panics
If string[..index_1]
panics.
Trait Implementations§
source§impl<'data> Clone for ListJoinerPattern<'data>
impl<'data> Clone for ListJoinerPattern<'data>
source§fn clone(&self) -> ListJoinerPattern<'data>
fn clone(&self) -> ListJoinerPattern<'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 ListJoinerPattern<'data>
impl<'data> Debug for ListJoinerPattern<'data>
source§impl<'data> PartialEq for ListJoinerPattern<'data>
impl<'data> PartialEq for ListJoinerPattern<'data>
source§fn eq(&self, other: &ListJoinerPattern<'data>) -> bool
fn eq(&self, other: &ListJoinerPattern<'data>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'a> Yokeable<'a> for ListJoinerPattern<'static>
impl<'a> Yokeable<'a> for ListJoinerPattern<'static>
§type Output = ListJoinerPattern<'a>
type Output = ListJoinerPattern<'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, ListJoinerPattern<'zf_inner>> for ListJoinerPattern<'zf>
impl<'zf, 'zf_inner> ZeroFrom<'zf, ListJoinerPattern<'zf_inner>> for ListJoinerPattern<'zf>
source§fn zero_from(this: &'zf ListJoinerPattern<'zf_inner>) -> Self
fn zero_from(this: &'zf ListJoinerPattern<'zf_inner>) -> Self
Clone the other
C
into a struct that may retain references into C
.impl<'data> StructuralPartialEq for ListJoinerPattern<'data>
Auto Trait Implementations§
impl<'data> Freeze for ListJoinerPattern<'data>
impl<'data> RefUnwindSafe for ListJoinerPattern<'data>
impl<'data> Send for ListJoinerPattern<'data>
impl<'data> Sync for ListJoinerPattern<'data>
impl<'data> Unpin for ListJoinerPattern<'data>
impl<'data> UnwindSafe for ListJoinerPattern<'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