pub struct ListJoinerPattern<'data> { /* private fields */ }
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.
Implementations§
Source§impl<'data> ListJoinerPattern<'data>
impl<'data> ListJoinerPattern<'data>
Sourcepub fn try_from_str(
pattern: &str,
allow_prefix: bool,
allow_suffix: bool,
) -> Result<Self, DataError>
pub fn try_from_str( pattern: &str, allow_prefix: bool, allow_suffix: bool, ) -> Result<Self, DataError>
Parses a ListJoinerPattern
from a string containing the “{0}” and “{1}” placeholders.
Source§impl<'a> ListJoinerPattern<'a>
impl<'a> ListJoinerPattern<'a>
Sourcepub const fn from_parts(string: VarZeroCow<'a, str>, index_1: u8) -> Self
pub const fn from_parts(string: VarZeroCow<'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 Bake for ListJoinerPattern<'_>
impl Bake for ListJoinerPattern<'_>
Source§fn bake(&self, env: &CrateEnv) -> TokenStream
fn bake(&self, env: &CrateEnv) -> TokenStream
Source§impl BakeSize for ListJoinerPattern<'_>
impl BakeSize for ListJoinerPattern<'_>
Source§fn borrows_size(&self) -> usize
fn borrows_size(&self) -> usize
Returns the size
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<'de: 'data, 'data> Deserialize<'de> for ListJoinerPattern<'data>
impl<'de: 'data, 'data> Deserialize<'de> for ListJoinerPattern<'data>
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
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<'data> From<ListJoinerPattern<'data>> for ConditionalListJoinerPattern<'data>
impl<'data> From<ListJoinerPattern<'data>> for ConditionalListJoinerPattern<'data>
Source§fn from(default: ListJoinerPattern<'data>) -> Self
fn from(default: ListJoinerPattern<'data>) -> Self
Converts to this type from the input type.
Source§impl<'data> PartialEq for ListJoinerPattern<'data>
impl<'data> PartialEq for ListJoinerPattern<'data>
Source§impl<'data> Serialize for ListJoinerPattern<'data>
impl<'data> Serialize 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§unsafe fn make(this: Self::Output) -> Self
unsafe fn make(this: Self::Output) -> Self
This method can be used to cast away
Self<'a>
’s lifetime. Read moreSource§fn transform_mut<F>(&'a mut self, f: F)where
F: 'static + for<'b> FnOnce(&'b mut Self::Output),
fn transform_mut<F>(&'a mut self, f: F)where
F: 'static + for<'b> FnOnce(&'b mut Self::Output),
This method must cast
self
between &'a mut Self<'static>
and &'a mut Self<'a>
,
and pass it to f
. Read moreSource§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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more