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§impl<'a> Yokeable<'a> for ListJoinerPattern<'static>
impl<'a> Yokeable<'a> for ListJoinerPattern<'static>
Source§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