pub enum SettledTimestamp {
Settled(DateTime<Utc>),
NotYetSettled(String),
}Variants§
Settled(DateTime<Utc>)
NotYetSettled(String)
If not yet settled, a string it returned, however it always seems to be empty.
Trait Implementations§
Source§impl Clone for SettledTimestamp
impl Clone for SettledTimestamp
Source§fn clone(&self) -> SettledTimestamp
fn clone(&self) -> SettledTimestamp
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 SettledTimestamp
impl Debug for SettledTimestamp
Source§impl<'de> Deserialize<'de> for SettledTimestamp
impl<'de> Deserialize<'de> for SettledTimestamp
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SettledTimestamp
impl RefUnwindSafe for SettledTimestamp
impl Send for SettledTimestamp
impl Sync for SettledTimestamp
impl Unpin for SettledTimestamp
impl UnwindSafe for SettledTimestamp
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