pub struct UserDataTimestamp {
pub last_validated_ts: String,
}Expand description
Represents the timestamp of the last portfolio data refresh.
This struct provides information about when user portfolio data was last updated, allowing users to determine data freshness.
Fields§
§last_validated_ts: StringThe timestamp of the last portfolio data validation/refresh.
Trait Implementations§
Source§impl Debug for UserDataTimestamp
impl Debug for UserDataTimestamp
Source§impl<'de> Deserialize<'de> for UserDataTimestamp
impl<'de> Deserialize<'de> for UserDataTimestamp
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 UserDataTimestamp
impl RefUnwindSafe for UserDataTimestamp
impl Send for UserDataTimestamp
impl Sync for UserDataTimestamp
impl Unpin for UserDataTimestamp
impl UnwindSafe for UserDataTimestamp
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