#[non_exhaustive]pub struct Bag {
pub era: Option<Text>,
pub year: Option<Year>,
pub month: Option<Month>,
pub week: Option<Week>,
pub day: Option<Day>,
pub weekday: Option<Text>,
pub hour: Option<Numeric>,
pub minute: Option<Numeric>,
pub second: Option<Numeric>,
pub fractional_second: Option<u8>,
pub time_zone_name: Option<TimeZoneName>,
pub preferences: Option<Bag>,
}
Expand description
See the module-level docs for more information.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.era: Option<Text>
Include the era, such as “AD” or “CE”.
year: Option<Year>
Include the year, such as “1970” or “70”.
month: Option<Month>
Include the month, such as “April” or “Apr”.
week: Option<Week>
Include the week number, such as “51st” or “51” for week 51.
day: Option<Day>
Include the day of the month/year, such as “07” or “7”.
weekday: Option<Text>
Include the weekday, such as “Wednesday” or “Wed”.
hour: Option<Numeric>
Include the hour such as “2” or “14”.
minute: Option<Numeric>
Include the minute such as “3” or “03”.
second: Option<Numeric>
Include the second such as “3” or “03”.
fractional_second: Option<u8>
Specify the number of fractional second digits such as 1 (“.3”) or 3 (“.003”).
time_zone_name: Option<TimeZoneName>
Include the time zone, such as “GMT+05:00”.
preferences: Option<Bag>
Adjust the preferences for the date, such as setting the hour cycle.
Implementations
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Bag
impl<'de> Deserialize<'de> for Bag
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<Bag, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<Bag, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<'data, '_> From<&'_ PatternPlurals<'data>> for Bag
impl<'data, '_> From<&'_ PatternPlurals<'data>> for Bag
Get the resolved components for a TypedDateTimeFormatter, via the PatternPlurals. In the case of
plurals resolve off of the required other
pattern.
sourceimpl From<Bag> for DateTimeFormatterOptions
impl From<Bag> for DateTimeFormatterOptions
sourcefn from(input: Bag) -> DateTimeFormatterOptions
fn from(input: Bag) -> DateTimeFormatterOptions
Converts to this type from the input type.
sourceimpl Serialize for Bag
impl Serialize for Bag
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for Bag
impl StructuralPartialEq for Bag
Auto Trait Implementations
impl RefUnwindSafe for Bag
impl Send for Bag
impl Sync for Bag
impl Unpin for Bag
impl UnwindSafe for Bag
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Serialize for T where
T: Serialize + ?Sized,
impl<T> Serialize for T where
T: Serialize + ?Sized,
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more