pub enum FieldSymbol {
    Era,
    Year(Year),
    Month(Month),
    Week(Week),
    Day(Day),
    Weekday(Weekday),
    DayPeriod(DayPeriod),
    Hour(Hour),
    Minute,
    Second(Second),
    TimeZone(TimeZone),
}
Expand description

A field symbol for a date formatting pattern. Field symbols are a more granular distinction for a pattern field within the category of a field type. Examples of field types are: Year, Month, Hour. Within the Hour field type, examples of field symbols are: Hour::H12, Hour::H24. Each field symbol is represented within the date formatting pattern string by a distinct character from the set of A..Z and a..z.

Variants§

§

Era

Era name.

§

Year(Year)

Year number or year name.

§

Month(Month)

Month number or month name.

§

Week(Week)

Week number or week name.

§

Day(Day)

Day number relative to a time period longer than a week (ex: month, year).

§

Weekday(Weekday)

Day number or day name relative to a week.

§

DayPeriod(DayPeriod)

Name of a period within a day.

§

Hour(Hour)

Hour number within a day, possibly with day period.

§

Minute

Minute number within an hour.

§

Second(Second)

Seconds number within a minute, including fractional seconds, or milliseconds within a day.

§

TimeZone(TimeZone)

Time zone as a name, a zone ID, or a ISO 8601 numerical offset.

Trait Implementations§

source§

impl AsULE for FieldSymbol

§

type ULE = FieldSymbolULE

The ULE type corresponding to Self. Read more
source§

fn to_unaligned(self) -> <FieldSymbol as AsULE>::ULE

Converts from Self to Self::ULE. Read more
source§

fn from_unaligned(unaligned: <FieldSymbol as AsULE>::ULE) -> FieldSymbol

Converts from Self::ULE to Self. Read more
source§

impl Clone for FieldSymbol

source§

fn clone(&self) -> FieldSymbol

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for FieldSymbol

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for FieldSymbol

source§

fn deserialize<__D>( __deserializer: __D ) -> Result<FieldSymbol, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<Day> for FieldSymbol

source§

fn from(input: Day) -> FieldSymbol

Converts to this type from the input type.
source§

impl From<DayPeriod> for FieldSymbol

source§

fn from(input: DayPeriod) -> FieldSymbol

Converts to this type from the input type.
source§

impl From<Hour> for FieldSymbol

source§

fn from(input: Hour) -> FieldSymbol

Converts to this type from the input type.
source§

impl From<Month> for FieldSymbol

source§

fn from(input: Month) -> FieldSymbol

Converts to this type from the input type.
source§

impl From<Second> for FieldSymbol

source§

fn from(input: Second) -> FieldSymbol

Converts to this type from the input type.
source§

impl From<TimeZone> for FieldSymbol

source§

fn from(input: TimeZone) -> FieldSymbol

Converts to this type from the input type.
source§

impl From<Week> for FieldSymbol

source§

fn from(input: Week) -> FieldSymbol

Converts to this type from the input type.
source§

impl From<Weekday> for FieldSymbol

source§

fn from(input: Weekday) -> FieldSymbol

Converts to this type from the input type.
source§

impl From<Year> for FieldSymbol

source§

fn from(input: Year) -> FieldSymbol

Converts to this type from the input type.
source§

impl Ord for FieldSymbol

source§

fn cmp(&self, other: &FieldSymbol) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for FieldSymbol

source§

fn eq(&self, other: &FieldSymbol) -> 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 PartialOrd for FieldSymbol

source§

fn partial_cmp(&self, other: &FieldSymbol) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl TryFrom<char> for FieldSymbol

§

type Error = SymbolError

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

fn try_from( ch: char ) -> Result<FieldSymbol, <FieldSymbol as TryFrom<char>>::Error>

Performs the conversion.
source§

impl Copy for FieldSymbol

source§

impl Eq for FieldSymbol

source§

impl StructuralEq for FieldSymbol

source§

impl StructuralPartialEq for FieldSymbol

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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,

§

impl<T> ErasedDestructor for Twhere T: 'static,

source§

impl<T> MaybeSendSync for Twhere T: Send + Sync,