pub struct OpenInterestRecord {
pub open_interest: String,
pub timestamp: String,
}Expand description
Single open interest record.
Fields§
§open_interest: StringOpen interest
timestamp: StringTimestamp
Trait Implementations§
Source§impl Clone for OpenInterestRecord
impl Clone for OpenInterestRecord
Source§fn clone(&self) -> OpenInterestRecord
fn clone(&self) -> OpenInterestRecord
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 OpenInterestRecord
impl Debug for OpenInterestRecord
Source§impl<'de> Deserialize<'de> for OpenInterestRecord
impl<'de> Deserialize<'de> for OpenInterestRecord
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 OpenInterestRecord
impl RefUnwindSafe for OpenInterestRecord
impl Send for OpenInterestRecord
impl Sync for OpenInterestRecord
impl Unpin for OpenInterestRecord
impl UnsafeUnpin for OpenInterestRecord
impl UnwindSafe for OpenInterestRecord
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