#[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

source

const fn pattern(&self) -> &'static str

Returns the literal sequence of characters that this DateTimeToken matches.

source

fn patterns() -> Vec<&'static str>

Returns the list of all known patterns, in the same order as the enum variants.

source

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.

source

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.

source

fn is_fill_mode_toggle(&self) -> bool

Returns whether this token is a fill mode toggle.

source

fn ordinal_mode(&self) -> OrdinalMode

Returns how this token affects the ordinal mode, if at all.

Trait Implementations§

source§

impl From<DateTimeToken> for u8

source§

fn from(enum_value: DateTimeToken) -> Self

Converts to this type from the input type.
source§

impl PartialEq for DateTimeToken

source§

fn eq(&self, other: &DateTimeToken) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Sequence for DateTimeToken

source§

const CARDINALITY: usize = 103usize

Number of values of type Self. Read more
source§

fn next(&self) -> Option<Self>

Returns value following *self or None if this was the end. Read more
source§

fn previous(&self) -> Option<Self>

Returns value preceding *self or None if this was the beginning. Read more
source§

fn first() -> Option<Self>

Returns the first value of type Self. Read more
source§

fn last() -> Option<Self>

Returns the last value of type Self. Read more
source§

impl TryFrom<u8> for DateTimeToken

§

type Error = TryFromPrimitiveError<DateTimeToken>

The type returned in the event of a conversion error.
source§

fn try_from(number: u8) -> Result<Self, TryFromPrimitiveError<Self>>

Performs the conversion.
source§

impl TryFromPrimitive for DateTimeToken

§

type Primitive = u8

source§

const NAME: &'static str = "DateTimeToken"

source§

fn try_from_primitive( number: Self::Primitive ) -> Result<Self, TryFromPrimitiveError<Self>>

source§

impl Eq for DateTimeToken

source§

impl StructuralEq for DateTimeToken

source§

impl StructuralPartialEq for DateTimeToken

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T, U> CastInto<U> for Twhere U: CastFrom<T>,

source§

fn cast_into(self) -> U

Performs the cast.
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FutureExt for T

source§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
source§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<P, R> ProtoType<R> for Pwhere R: RustType<P>,

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more