pub struct IntlDateTimeFormatValue {
pub locale: String,
pub time_zone: Option<String>,
pub year: Option<String>,
pub month: Option<String>,
pub day: Option<String>,
pub hour: Option<String>,
pub minute: Option<String>,
pub second: Option<String>,
pub hour12: Option<bool>,
}Fields§
§locale: String§time_zone: Option<String>§year: Option<String>§month: Option<String>§day: Option<String>§hour: Option<String>§minute: Option<String>§second: Option<String>§hour12: Option<bool>Trait Implementations§
Source§impl Clone for IntlDateTimeFormatValue
impl Clone for IntlDateTimeFormatValue
Source§fn clone(&self) -> IntlDateTimeFormatValue
fn clone(&self) -> IntlDateTimeFormatValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IntlDateTimeFormatValue
impl Debug for IntlDateTimeFormatValue
Source§impl PartialEq for IntlDateTimeFormatValue
impl PartialEq for IntlDateTimeFormatValue
impl Eq for IntlDateTimeFormatValue
impl StructuralPartialEq for IntlDateTimeFormatValue
Auto Trait Implementations§
impl Freeze for IntlDateTimeFormatValue
impl RefUnwindSafe for IntlDateTimeFormatValue
impl Send for IntlDateTimeFormatValue
impl Sync for IntlDateTimeFormatValue
impl Unpin for IntlDateTimeFormatValue
impl UnsafeUnpin for IntlDateTimeFormatValue
impl UnwindSafe for IntlDateTimeFormatValue
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more