pub struct MetaDataDate {
pub date_time: f64,
pub local_date_time_offset: i16,
}Expand description
The ScriptDataDate is a kind of ScriptDataValue.
Fields§
§date_time: f64Number of milliseconds since UNIX_EPOCH.
local_date_time_offset: i16Local time offset in minutes from UTC. For time zones located west of Greenwich, this value is a negative number. Time zones east of Greenwich are positive.
Trait Implementations§
Source§impl Clone for MetaDataDate
impl Clone for MetaDataDate
Source§fn clone(&self) -> MetaDataDate
fn clone(&self) -> MetaDataDate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MetaDataDate
Source§impl Debug for MetaDataDate
impl Debug for MetaDataDate
Source§impl PartialEq for MetaDataDate
impl PartialEq for MetaDataDate
impl StructuralPartialEq for MetaDataDate
Auto Trait Implementations§
impl Freeze for MetaDataDate
impl RefUnwindSafe for MetaDataDate
impl Send for MetaDataDate
impl Sync for MetaDataDate
impl Unpin for MetaDataDate
impl UnsafeUnpin for MetaDataDate
impl UnwindSafe for MetaDataDate
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