Struct icu_datetime::fieldsets::Combo

source ·
pub struct Combo<DT, Z> { /* private fields */ }
Expand description

Struct for combining date/time fields with zone fields.

This struct produces “composite field sets” as defined in UTS 35. See fieldsets.

§Examples

Only one way to construct a combo field set (in this case, weekday with location-based zone):

use icu::datetime::fieldsets::{Combo, E, L};

let field_set = E::long().with_zone_location();

Format the weekday, hour, and location-based zone:

use icu::datetime::fieldsets::{Combo, ET, L};
use icu::datetime::DateTimeFormatter;
use icu::locale::locale;
use icu::timezone::IxdtfParser;
use writeable::assert_writeable_eq;

// Note: Combo type can be elided, but it is shown here for demonstration
let formatter = DateTimeFormatter::<Combo<ET, L>>::try_new(
    locale!("en-US").into(),
    ET::short().hm().with_zone_location(),
)
.unwrap();

let zdt = IxdtfParser::new()
    .try_location_only_from_str("2024-10-18T15:44[America/Los_Angeles]")
    .unwrap();

assert_writeable_eq!(
    formatter.format_any_calendar(&zdt),
    "Fri, 3:44 PM Los Angeles Time"
);

Same thing with a fixed calendar formatter:

use icu::calendar::Gregorian;
use icu::datetime::fieldsets::{Combo, ET, L};
use icu::datetime::FixedCalendarDateTimeFormatter;
use icu::locale::locale;
use icu::timezone::IxdtfParser;
use writeable::assert_writeable_eq;

// Note: Combo type can be elided, but it is shown here for demonstration
let formatter = FixedCalendarDateTimeFormatter::<_, Combo<ET, L>>::try_new(
    locale!("en-US").into(),
    ET::short().hm().with_zone_location(),
)
.unwrap();

let zdt = IxdtfParser::new()
    .try_location_only_iso_from_str("2024-10-18T15:44[America/Los_Angeles]")
    .unwrap()
    .to_calendar(Gregorian);

assert_writeable_eq!(
    formatter.format(&zdt),
    "Fri, 3:44 PM Los Angeles Time"
);

Mix a dynamic DateFieldSet with a static time zone:

use icu::datetime::fieldsets::{enums::DateFieldSet, Combo, Vs, YMD};
use icu::datetime::DateTimeFormatter;
use icu::locale::locale;
use icu::timezone::IxdtfParser;
use writeable::assert_writeable_eq;

// Note: Combo type can be elided, but it is shown here for demonstration
let formatter = DateTimeFormatter::<Combo<DateFieldSet, Vs>>::try_new(
    locale!("en-US").into(),
    DateFieldSet::YMD(YMD::long()).with_zone_generic(),
)
.unwrap();

let zdt = IxdtfParser::new()
    .try_location_only_from_str("2024-10-18T15:44[America/Los_Angeles]")
    .unwrap();

assert_writeable_eq!(
    formatter.format_any_calendar(&zdt),
    "October 18, 2024 PT"
);

Format with a time of day and long time zone:

use icu::calendar::Gregorian;
use icu::datetime::fieldsets::T;
use icu::datetime::FixedCalendarDateTimeFormatter;
use icu::locale::locale;
use icu::timezone::IxdtfParser;
use writeable::assert_writeable_eq;

let formatter = FixedCalendarDateTimeFormatter::try_new(
    locale!("en-US").into(),
    T::medium().with_zone_specific_long(),
)
.unwrap();

let zdt = IxdtfParser::new()
    .try_iso_from_str("2024-10-18T15:44-0700[America/Los_Angeles]")
    .unwrap()
    .to_calendar(Gregorian);

assert_writeable_eq!(
    formatter.format(&zdt),
    "3:44:00 PM Pacific Daylight Time"
);

Implementations§

source§

impl Combo<D, Z>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<D, Zs>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<D, O>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<D, Os>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<D, V>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<D, Vs>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<D, L>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DT, Z>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DT, Zs>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DT, O>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DT, Os>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DT, V>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DT, Vs>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DT, L>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<E, Z>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<E, Zs>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<E, O>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<E, Os>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<E, V>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<E, Vs>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<E, L>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<ET, Z>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<ET, Zs>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<ET, O>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<ET, Os>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<ET, V>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<ET, Vs>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<ET, L>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DE, Z>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DE, Zs>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DE, O>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DE, Os>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DE, V>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DE, Vs>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DE, L>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DET, Z>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DET, Zs>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DET, O>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DET, Os>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DET, V>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DET, Vs>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DET, L>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MD, Z>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MD, Zs>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MD, O>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MD, Os>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MD, V>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MD, Vs>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MD, L>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDT, Z>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDT, Zs>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDT, O>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDT, Os>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDT, V>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDT, Vs>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDT, L>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDE, Z>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDE, Zs>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDE, O>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDE, Os>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDE, V>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDE, Vs>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDE, L>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDET, Z>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDET, Zs>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDET, O>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDET, Os>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDET, V>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDET, Vs>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<MDET, L>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMD, Z>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMD, Zs>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMD, O>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMD, Os>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMD, V>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMD, Vs>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMD, L>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDT, Z>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDT, Zs>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDT, O>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDT, Os>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDT, V>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDT, Vs>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDT, L>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDE, Z>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDE, Zs>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDE, O>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDE, Os>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDE, V>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDE, Vs>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDE, L>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDET, Z>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDET, Zs>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDET, O>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDET, Os>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDET, V>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDET, Vs>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<YMDET, L>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<T, Z>

source

pub fn into_enums(self) -> Combo<TimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<T, Zs>

source

pub fn into_enums(self) -> Combo<TimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<T, O>

source

pub fn into_enums(self) -> Combo<TimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<T, Os>

source

pub fn into_enums(self) -> Combo<TimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<T, V>

source

pub fn into_enums(self) -> Combo<TimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<T, Vs>

source

pub fn into_enums(self) -> Combo<TimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<T, L>

source

pub fn into_enums(self) -> Combo<TimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DateFieldSet, Z>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DateFieldSet, Zs>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DateFieldSet, O>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DateFieldSet, Os>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DateFieldSet, V>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DateFieldSet, Vs>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DateFieldSet, L>

source

pub fn into_enums(self) -> Combo<DateFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<TimeFieldSet, Z>

source

pub fn into_enums(self) -> Combo<TimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<TimeFieldSet, Zs>

source

pub fn into_enums(self) -> Combo<TimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<TimeFieldSet, O>

source

pub fn into_enums(self) -> Combo<TimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<TimeFieldSet, Os>

source

pub fn into_enums(self) -> Combo<TimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<TimeFieldSet, V>

source

pub fn into_enums(self) -> Combo<TimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<TimeFieldSet, Vs>

source

pub fn into_enums(self) -> Combo<TimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<TimeFieldSet, L>

source

pub fn into_enums(self) -> Combo<TimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DateAndTimeFieldSet, Z>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DateAndTimeFieldSet, Zs>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DateAndTimeFieldSet, O>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DateAndTimeFieldSet, Os>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DateAndTimeFieldSet, V>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DateAndTimeFieldSet, Vs>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

source§

impl Combo<DateAndTimeFieldSet, L>

source

pub fn into_enums(self) -> Combo<DateAndTimeFieldSet, ZoneFieldSet>

Convert this specific Combo into a more general Combo. Useful when adding to the field of a CompositeFieldSet.

Trait Implementations§

source§

impl<DT: Clone, Z: Clone> Clone for Combo<DT, Z>

source§

fn clone(&self) -> Combo<DT, Z>

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<DT, Z> DateTimeMarkers for Combo<DT, Z>

source§

type D = <DT as DateTimeMarkers>::D

Associated types for date formatting. Read more
source§

type T = <DT as DateTimeMarkers>::T

Associated types for time formatting. Read more
source§

type Z = <Z as DateTimeMarkers>::Z

Associated types for time zone formatting. Read more
source§

type GluePatternV1Marker = GluePatternV1Marker

Marker for loading the date/time glue pattern.
source§

impl<DT, Z> DateTimeNamesMarker for Combo<DT, Z>

source§

impl<DT: Debug, Z: Debug> Debug for Combo<DT, Z>

source§

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

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

impl GetField<CompositeFieldSet> for Combo<D, L>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<D, O>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<D, Os>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<D, V>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<D, Vs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<D, Z>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<D, Zs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DE, L>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DE, O>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DE, Os>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DE, V>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DE, Vs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DE, Z>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DE, Zs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DET, L>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DET, O>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DET, Os>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DET, V>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DET, Vs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DET, Z>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DET, Zs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DT, L>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DT, O>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DT, Os>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DT, V>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DT, Vs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DT, Z>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DT, Zs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DateAndTimeFieldSet, L>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DateAndTimeFieldSet, O>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DateAndTimeFieldSet, Os>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DateAndTimeFieldSet, V>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DateAndTimeFieldSet, Vs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DateAndTimeFieldSet, Z>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DateAndTimeFieldSet, Zs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DateFieldSet, L>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DateFieldSet, O>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DateFieldSet, Os>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DateFieldSet, V>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DateFieldSet, Vs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DateFieldSet, Z>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<DateFieldSet, Zs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<E, L>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<E, O>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<E, Os>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<E, V>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<E, Vs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<E, Z>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<E, Zs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<ET, L>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<ET, O>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<ET, Os>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<ET, V>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<ET, Vs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<ET, Z>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<ET, Zs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MD, L>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MD, O>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MD, Os>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MD, V>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MD, Vs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MD, Z>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MD, Zs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDE, L>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDE, O>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDE, Os>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDE, V>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDE, Vs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDE, Z>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDE, Zs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDET, L>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDET, O>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDET, Os>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDET, V>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDET, Vs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDET, Z>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDET, Zs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDT, L>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDT, O>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDT, Os>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDT, V>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDT, Vs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDT, Z>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<MDT, Zs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<T, L>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<T, O>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<T, Os>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<T, V>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<T, Vs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<T, Z>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<T, Zs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<TimeFieldSet, L>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<TimeFieldSet, O>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<TimeFieldSet, Os>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<TimeFieldSet, V>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<TimeFieldSet, Vs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<TimeFieldSet, Z>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<TimeFieldSet, Zs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMD, L>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMD, O>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMD, Os>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMD, V>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMD, Vs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMD, Z>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMD, Zs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDE, L>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDE, O>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDE, Os>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDE, V>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDE, Vs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDE, Z>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDE, Zs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDET, L>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDET, O>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDET, Os>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDET, V>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDET, Vs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDET, Z>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDET, Zs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDT, L>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDT, O>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDT, Os>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDT, V>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDT, Vs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDT, Z>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl GetField<CompositeFieldSet> for Combo<YMDT, Zs>

source§

fn get_field(&self) -> CompositeFieldSet

Returns the value of this trait’s field T.
source§

impl<DT: PartialEq, Z: PartialEq> PartialEq for Combo<DT, Z>

source§

fn eq(&self, other: &Combo<DT, Z>) -> 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<DT: Copy, Z: Copy> Copy for Combo<DT, Z>

source§

impl<DT: Eq, Z: Eq> Eq for Combo<DT, Z>

source§

impl<DT, Z> StructuralPartialEq for Combo<DT, Z>

source§

impl<DT, Z> UnstableSealed for Combo<DT, Z>

Auto Trait Implementations§

§

impl<DT, Z> Freeze for Combo<DT, Z>
where DT: Freeze, Z: Freeze,

§

impl<DT, Z> RefUnwindSafe for Combo<DT, Z>

§

impl<DT, Z> Send for Combo<DT, Z>
where DT: Send, Z: Send,

§

impl<DT, Z> Sync for Combo<DT, Z>
where DT: Sync, Z: Sync,

§

impl<DT, Z> Unpin for Combo<DT, Z>
where DT: Unpin, Z: Unpin,

§

impl<DT, Z> UnwindSafe for Combo<DT, Z>
where DT: UnwindSafe, Z: UnwindSafe,

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<M, T> DateTimeNamesFrom<M> for T
where M: DateTimeNamesMarker, T: DateTimeNamesMarker, <<T as DateTimeNamesMarker>::YearNames as NamesContainer<YearNamesV1Marker, FieldLength>>::Container: From<<<M as DateTimeNamesMarker>::YearNames as NamesContainer<YearNamesV1Marker, FieldLength>>::Container>, <<T as DateTimeNamesMarker>::MonthNames as NamesContainer<MonthNamesV1Marker, (Month, FieldLength)>>::Container: From<<<M as DateTimeNamesMarker>::MonthNames as NamesContainer<MonthNamesV1Marker, (Month, FieldLength)>>::Container>, <<T as DateTimeNamesMarker>::WeekdayNames as NamesContainer<WeekdayNamesV1Marker, (Weekday, FieldLength)>>::Container: From<<<M as DateTimeNamesMarker>::WeekdayNames as NamesContainer<WeekdayNamesV1Marker, (Weekday, FieldLength)>>::Container>, <<T as DateTimeNamesMarker>::DayPeriodNames as NamesContainer<DayPeriodNamesV1Marker, FieldLength>>::Container: From<<<M as DateTimeNamesMarker>::DayPeriodNames as NamesContainer<DayPeriodNamesV1Marker, FieldLength>>::Container>, <<T as DateTimeNamesMarker>::ZoneEssentials as NamesContainer<TimeZoneEssentialsV1Marker, ()>>::Container: From<<<M as DateTimeNamesMarker>::ZoneEssentials as NamesContainer<TimeZoneEssentialsV1Marker, ()>>::Container>, <<T as DateTimeNamesMarker>::ZoneLocations as NamesContainer<LocationsV1Marker, ()>>::Container: From<<<M as DateTimeNamesMarker>::ZoneLocations as NamesContainer<LocationsV1Marker, ()>>::Container>, <<T as DateTimeNamesMarker>::ZoneGenericLong as NamesContainer<MetazoneGenericNamesLongV1Marker, ()>>::Container: From<<<M as DateTimeNamesMarker>::ZoneGenericLong as NamesContainer<MetazoneGenericNamesLongV1Marker, ()>>::Container>, <<T as DateTimeNamesMarker>::ZoneGenericShort as NamesContainer<MetazoneGenericNamesShortV1Marker, ()>>::Container: From<<<M as DateTimeNamesMarker>::ZoneGenericShort as NamesContainer<MetazoneGenericNamesShortV1Marker, ()>>::Container>, <<T as DateTimeNamesMarker>::ZoneSpecificLong as NamesContainer<MetazoneSpecificNamesLongV1Marker, ()>>::Container: From<<<M as DateTimeNamesMarker>::ZoneSpecificLong as NamesContainer<MetazoneSpecificNamesLongV1Marker, ()>>::Container>, <<T as DateTimeNamesMarker>::ZoneSpecificShort as NamesContainer<MetazoneSpecificNamesShortV1Marker, ()>>::Container: From<<<M as DateTimeNamesMarker>::ZoneSpecificShort as NamesContainer<MetazoneSpecificNamesShortV1Marker, ()>>::Container>, <<T as DateTimeNamesMarker>::MetazoneLookup as NamesContainer<MetazonePeriodV1Marker, ()>>::Container: From<<<M as DateTimeNamesMarker>::MetazoneLookup as NamesContainer<MetazonePeriodV1Marker, ()>>::Container>,

source§

fn map_year_names( other: <<M as DateTimeNamesMarker>::YearNames as NamesContainer<YearNamesV1Marker, FieldLength>>::Container, ) -> <<T as DateTimeNamesMarker>::YearNames as NamesContainer<YearNamesV1Marker, FieldLength>>::Container

source§

fn map_month_names( other: <<M as DateTimeNamesMarker>::MonthNames as NamesContainer<MonthNamesV1Marker, (Month, FieldLength)>>::Container, ) -> <<T as DateTimeNamesMarker>::MonthNames as NamesContainer<MonthNamesV1Marker, (Month, FieldLength)>>::Container

source§

fn map_weekday_names( other: <<M as DateTimeNamesMarker>::WeekdayNames as NamesContainer<WeekdayNamesV1Marker, (Weekday, FieldLength)>>::Container, ) -> <<T as DateTimeNamesMarker>::WeekdayNames as NamesContainer<WeekdayNamesV1Marker, (Weekday, FieldLength)>>::Container

source§

fn map_day_period_names( other: <<M as DateTimeNamesMarker>::DayPeriodNames as NamesContainer<DayPeriodNamesV1Marker, FieldLength>>::Container, ) -> <<T as DateTimeNamesMarker>::DayPeriodNames as NamesContainer<DayPeriodNamesV1Marker, FieldLength>>::Container

source§

fn map_zone_essentials( other: <<M as DateTimeNamesMarker>::ZoneEssentials as NamesContainer<TimeZoneEssentialsV1Marker, ()>>::Container, ) -> <<T as DateTimeNamesMarker>::ZoneEssentials as NamesContainer<TimeZoneEssentialsV1Marker, ()>>::Container

source§

fn map_zone_locations( other: <<M as DateTimeNamesMarker>::ZoneLocations as NamesContainer<LocationsV1Marker, ()>>::Container, ) -> <<T as DateTimeNamesMarker>::ZoneLocations as NamesContainer<LocationsV1Marker, ()>>::Container

source§

fn map_zone_generic_long( other: <<M as DateTimeNamesMarker>::ZoneGenericLong as NamesContainer<MetazoneGenericNamesLongV1Marker, ()>>::Container, ) -> <<T as DateTimeNamesMarker>::ZoneGenericLong as NamesContainer<MetazoneGenericNamesLongV1Marker, ()>>::Container

source§

fn map_zone_generic_short( other: <<M as DateTimeNamesMarker>::ZoneGenericShort as NamesContainer<MetazoneGenericNamesShortV1Marker, ()>>::Container, ) -> <<T as DateTimeNamesMarker>::ZoneGenericShort as NamesContainer<MetazoneGenericNamesShortV1Marker, ()>>::Container

source§

fn map_zone_specific_long( other: <<M as DateTimeNamesMarker>::ZoneSpecificLong as NamesContainer<MetazoneSpecificNamesLongV1Marker, ()>>::Container, ) -> <<T as DateTimeNamesMarker>::ZoneSpecificLong as NamesContainer<MetazoneSpecificNamesLongV1Marker, ()>>::Container

source§

fn map_zone_specific_short( other: <<M as DateTimeNamesMarker>::ZoneSpecificShort as NamesContainer<MetazoneSpecificNamesShortV1Marker, ()>>::Container, ) -> <<T as DateTimeNamesMarker>::ZoneSpecificShort as NamesContainer<MetazoneSpecificNamesShortV1Marker, ()>>::Container

source§

fn map_metazone_lookup( other: <<M as DateTimeNamesMarker>::MetazoneLookup as NamesContainer<MetazonePeriodV1Marker, ()>>::Container, ) -> <<T as DateTimeNamesMarker>::MetazoneLookup as NamesContainer<MetazonePeriodV1Marker, ()>>::Container

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> GetField<T> for T
where T: Copy + UnstableSealed,

source§

fn get_field(&self) -> T

Returns the value of this trait’s field T.
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,