Struct icu_datetime::provider::neo::DatePatternV1
source · pub struct DatePatternV1<'data> {
pub pattern: Pattern<'data>,
}Expand description
The default per-length patterns associated with dates
This uses an auxiliary subtag for length. The subtag can be “f”, “l”, “m”, “s” for “full”, “long”, “medium”, or “short”.
🚧 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§
§pattern: Pattern<'data>The pattern
Trait Implementations§
source§impl<'data> Bake for DatePatternV1<'data>
impl<'data> Bake for DatePatternV1<'data>
source§fn bake(&self, env: &CrateEnv) -> TokenStream
fn bake(&self, env: &CrateEnv) -> TokenStream
source§impl<'data> Clone for DatePatternV1<'data>
impl<'data> Clone for DatePatternV1<'data>
source§fn clone(&self) -> DatePatternV1<'data>
fn clone(&self) -> DatePatternV1<'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 DatePatternV1<'data>
impl<'data> Debug for DatePatternV1<'data>
source§impl<'de: 'data, 'data> Deserialize<'de> for DatePatternV1<'data>
impl<'de: 'data, 'data> Deserialize<'de> for DatePatternV1<'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> PartialEq for DatePatternV1<'data>
impl<'data> PartialEq for DatePatternV1<'data>
source§fn eq(&self, other: &DatePatternV1<'data>) -> bool
fn eq(&self, other: &DatePatternV1<'data>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<'data> Serialize for DatePatternV1<'data>
impl<'data> Serialize for DatePatternV1<'data>
source§impl<'a> Yokeable<'a> for DatePatternV1<'static>
impl<'a> Yokeable<'a> for DatePatternV1<'static>
§type Output = DatePatternV1<'a>
type Output = DatePatternV1<'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, DatePatternV1<'zf_inner>> for DatePatternV1<'zf>
impl<'zf, 'zf_inner> ZeroFrom<'zf, DatePatternV1<'zf_inner>> for DatePatternV1<'zf>
source§fn zero_from(this: &'zf DatePatternV1<'zf_inner>) -> Self
fn zero_from(this: &'zf DatePatternV1<'zf_inner>) -> Self
Clone the other
C into a struct that may retain references into C.impl<'data> StructuralPartialEq for DatePatternV1<'data>
Auto Trait Implementations§
impl<'data> RefUnwindSafe for DatePatternV1<'data>
impl<'data> Send for DatePatternV1<'data>
impl<'data> Sync for DatePatternV1<'data>
impl<'data> Unpin for DatePatternV1<'data>
impl<'data> UnwindSafe for DatePatternV1<'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