#[repr(u8)]enum DateTimeToken {
Show 103 variants
a_d = 0,
A_D = 1,
a_m = 2,
A_M = 3,
ad = 4,
AD = 5,
am = 6,
AM = 7,
b_c = 8,
B_C = 9,
bc = 10,
BC = 11,
cc = 12,
CC = 13,
d = 14,
D = 15,
day = 16,
Day = 17,
DAY = 18,
dd = 19,
DD = 20,
ddd = 21,
DDD = 22,
dy = 23,
Dy = 24,
DY = 25,
fm = 26,
FM = 27,
fx = 28,
FX = 29,
hh = 30,
HH = 31,
hh12 = 32,
HH12 = 33,
hh24 = 34,
HH24 = 35,
i = 36,
I = 37,
id = 38,
ID = 39,
iddd = 40,
IDDD = 41,
iw = 42,
IW = 43,
iy = 44,
IY = 45,
iyy = 46,
IYY = 47,
iyyy = 48,
IYYY = 49,
j = 50,
J = 51,
mi = 52,
MI = 53,
mm = 54,
MM = 55,
mon = 56,
Mon = 57,
MON = 58,
month = 59,
Month = 60,
MONTH = 61,
ms = 62,
MS = 63,
OF = 64,
p_m = 65,
P_M = 66,
pm = 67,
PM = 68,
q = 69,
Q = 70,
rm = 71,
RM = 72,
ss = 73,
SS = 74,
ssss = 75,
SSSS = 76,
sssss = 77,
SSSSS = 78,
tz = 79,
TZ = 80,
TZH = 81,
TZM = 82,
us = 83,
US = 84,
w = 85,
W = 86,
ww = 87,
WW = 88,
y_yyy = 89,
Y_YYY = 90,
y = 91,
Y = 92,
yy = 93,
YY = 94,
yyy = 95,
YYY = 96,
yyyy = 97,
YYYY = 98,
th = 99,
TH = 100,
EscQuote = 101,
Quote = 102,
}
Expand description
The raw tokens that can appear in a format string. Many of these tokens overlap, in which case the longest matching token should be selected.
Variants§
a_d = 0
A_D = 1
a_m = 2
A_M = 3
ad = 4
AD = 5
am = 6
AM = 7
b_c = 8
B_C = 9
bc = 10
BC = 11
cc = 12
CC = 13
d = 14
D = 15
day = 16
Day = 17
DAY = 18
dd = 19
DD = 20
ddd = 21
DDD = 22
dy = 23
Dy = 24
DY = 25
fm = 26
FM = 27
fx = 28
FX = 29
hh = 30
HH = 31
hh12 = 32
HH12 = 33
hh24 = 34
HH24 = 35
i = 36
I = 37
id = 38
ID = 39
iddd = 40
IDDD = 41
iw = 42
IW = 43
iy = 44
IY = 45
iyy = 46
IYY = 47
iyyy = 48
IYYY = 49
j = 50
J = 51
mi = 52
MI = 53
mm = 54
MM = 55
mon = 56
Mon = 57
MON = 58
month = 59
Month = 60
MONTH = 61
ms = 62
MS = 63
OF = 64
p_m = 65
P_M = 66
pm = 67
PM = 68
q = 69
Q = 70
rm = 71
RM = 72
ss = 73
SS = 74
ssss = 75
SSSS = 76
sssss = 77
SSSSS = 78
tz = 79
TZ = 80
TZH = 81
TZM = 82
us = 83
US = 84
w = 85
W = 86
ww = 87
WW = 88
y_yyy = 89
Y_YYY = 90
y = 91
Y = 92
yy = 93
YY = 94
yyy = 95
YYY = 96
yyyy = 97
YYYY = 98
th = 99
TH = 100
EscQuote = 101
Quote = 102
Implementations§
source§impl DateTimeToken
impl DateTimeToken
sourceconst fn pattern(&self) -> &'static str
const fn pattern(&self) -> &'static str
Returns the literal sequence of characters that this DateTimeToken
matches.
sourcefn patterns() -> Vec<&'static str>
fn patterns() -> Vec<&'static str>
Returns the list of all known patterns, in the same order as the enum variants.
sourcefn field(&self) -> Option<DateTimeField>
fn field(&self) -> Option<DateTimeField>
Returns the DateTimeField
associated with this token, if any.
Some tokens do not correspond directly to a field, but instead modify other fields.
sourcefn as_literal(&self) -> &'static str
fn as_literal(&self) -> &'static str
Returns how this token should be rendered if it appears within quotes.
This is usually the same string as the pattern
method returns, but
not always.
sourcefn is_fill_mode_toggle(&self) -> bool
fn is_fill_mode_toggle(&self) -> bool
Returns whether this token is a fill mode toggle.
sourcefn ordinal_mode(&self) -> OrdinalMode
fn ordinal_mode(&self) -> OrdinalMode
Returns how this token affects the ordinal mode, if at all.
Trait Implementations§
source§impl From<DateTimeToken> for u8
impl From<DateTimeToken> for u8
source§fn from(enum_value: DateTimeToken) -> Self
fn from(enum_value: DateTimeToken) -> Self
Converts to this type from the input type.
source§impl PartialEq for DateTimeToken
impl PartialEq for DateTimeToken
source§impl Sequence for DateTimeToken
impl Sequence for DateTimeToken
source§impl TryFrom<u8> for DateTimeToken
impl TryFrom<u8> for DateTimeToken
§type Error = TryFromPrimitiveError<DateTimeToken>
type Error = TryFromPrimitiveError<DateTimeToken>
The type returned in the event of a conversion error.
source§impl TryFromPrimitive for DateTimeToken
impl TryFromPrimitive for DateTimeToken
impl Eq for DateTimeToken
impl StructuralPartialEq for DateTimeToken
Auto Trait Implementations§
impl Freeze for DateTimeToken
impl RefUnwindSafe for DateTimeToken
impl Send for DateTimeToken
impl Sync for DateTimeToken
impl Unpin for DateTimeToken
impl UnwindSafe for DateTimeToken
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
source§impl<T, U> OverrideFrom<Option<&T>> for Uwhere
U: OverrideFrom<T>,
impl<T, U> OverrideFrom<Option<&T>> for Uwhere
U: OverrideFrom<T>,
source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
source§fn into_rust(self) -> Result<R, TryFromProtoError>
fn into_rust(self) -> Result<R, TryFromProtoError>
See
RustType::from_proto
.source§fn from_rust(rust: &R) -> P
fn from_rust(rust: &R) -> P
See
RustType::into_proto
.source§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
The method of
std::ops::AddAssign
, for types that do not implement AddAssign
.