Struct icu_datetime::fieldsets::builder::FieldSetBuilder

source ·
#[non_exhaustive]
pub struct FieldSetBuilder { pub length: Option<Length>, pub date_fields: Option<DateFields>, pub time_precision: Option<TimePrecision>, pub zone_style: Option<ZoneStyle>, pub alignment: Option<Alignment>, pub year_style: Option<YearStyle>, }
Expand description

A builder for dynamic field sets.

This builder is useful if you do not know the field set at code compilation time. If you do, the static field set APIs should yield smaller binary size.

For examples, see the module docs.

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§length: Option<Length>

The length of a formatted date/time string.

If None, defaults to Length::Medium.

§date_fields: Option<DateFields>

The set of date fields, such as “year and month” or “weekday”.

If None, a date will not be displayed.

§time_precision: Option<TimePrecision>

The precision to display the time of day.

If None, a time will not be displayed.

§zone_style: Option<ZoneStyle>

The style to display the time zone.

If None, a time zone will not be displayed.

§alignment: Option<Alignment>

The alignment context, such as when displaying dates in a table.

This option may be specified only if the field set can honor it.

§year_style: Option<YearStyle>

How to display the year and era.

This option may be specified only if the year is included in Self::date_fields.

Implementations§

source§

impl FieldSetBuilder

source

pub fn build_date(self) -> Result<DateFieldSet, BuilderError>

Builds a DateFieldSet.

An error will occur if incompatible fields or options were set in the builder.

source

pub fn build_time(self) -> Result<TimeFieldSet, BuilderError>

Builds a TimeFieldSet.

An error will occur if incompatible fields or options were set in the builder.

source

pub fn build_zone(self) -> Result<ZoneFieldSet, BuilderError>

Builds a ZoneFieldSet.

An error will occur if incompatible fields or options were set in the builder.

source

pub fn build_date_and_time(self) -> Result<DateAndTimeFieldSet, BuilderError>

Builds a DateAndTimeFieldSet.

An error will occur if incompatible fields or options were set in the builder.

source

pub fn build_composite_datetime( self, ) -> Result<CompositeDateTimeFieldSet, BuilderError>

Builds a CompositeDateTimeFieldSet.

An error will occur if incompatible fields or options were set in the builder.

source

pub fn build_composite(self) -> Result<CompositeFieldSet, BuilderError>

Builds a CompositeFieldSet.

An error will occur if incompatible fields or options were set in the builder.

Trait Implementations§

source§

impl Clone for FieldSetBuilder

source§

fn clone(&self) -> FieldSetBuilder

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 FieldSetBuilder

source§

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

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

impl Default for FieldSetBuilder

source§

fn default() -> FieldSetBuilder

Returns the “default value” for a type. Read more
source§

impl PartialEq for FieldSetBuilder

source§

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

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

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

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

impl Eq for FieldSetBuilder

source§

impl StructuralPartialEq for FieldSetBuilder

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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 T
where 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> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> ToOwned for T
where T: Clone,

source§

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 T
where U: Into<T>,

source§

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 T
where U: TryFrom<T>,

source§

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.
§

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

§

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