pub struct OpenInterest {
pub category: String,
pub symbol: String,
pub list: Vec<OpenInterestRecord>,
pub next_page_cursor: String,
}Expand description
Open interest response.
Fields§
§category: StringCategory
symbol: StringSymbol
list: Vec<OpenInterestRecord>List of open interest data
next_page_cursor: StringNext page cursor
Trait Implementations§
Source§impl Clone for OpenInterest
impl Clone for OpenInterest
Source§fn clone(&self) -> OpenInterest
fn clone(&self) -> OpenInterest
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 OpenInterest
impl Debug for OpenInterest
Source§impl<'de> Deserialize<'de> for OpenInterest
impl<'de> Deserialize<'de> for OpenInterest
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 OpenInterest
impl RefUnwindSafe for OpenInterest
impl Send for OpenInterest
impl Sync for OpenInterest
impl Unpin for OpenInterest
impl UnsafeUnpin for OpenInterest
impl UnwindSafe for OpenInterest
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