pub struct UtcTimestamp {
pub time: DateTime<Utc>,
pub precision: TimestampPrecision,
}Expand description
A FIX UTCTimestamp: YYYYMMDD-HH:MM:SS[.sss[sss[sss]]].
Fields§
§time: DateTime<Utc>§precision: TimestampPrecisionImplementations§
Source§impl UtcTimestamp
impl UtcTimestamp
Trait Implementations§
Source§impl Clone for UtcTimestamp
impl Clone for UtcTimestamp
Source§fn clone(&self) -> UtcTimestamp
fn clone(&self) -> UtcTimestamp
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 UtcTimestamp
Source§impl Debug for UtcTimestamp
impl Debug for UtcTimestamp
impl Eq for UtcTimestamp
Source§impl FixDecode for UtcTimestamp
impl FixDecode for UtcTimestamp
Source§impl PartialEq for UtcTimestamp
impl PartialEq for UtcTimestamp
impl StructuralPartialEq for UtcTimestamp
Auto Trait Implementations§
impl Freeze for UtcTimestamp
impl RefUnwindSafe for UtcTimestamp
impl Send for UtcTimestamp
impl Sync for UtcTimestamp
impl Unpin for UtcTimestamp
impl UnsafeUnpin for UtcTimestamp
impl UnwindSafe for UtcTimestamp
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