pub struct OpenInterest {
pub symbol: String,
pub category: String,
pub list: Vec<OpenInterestEntry>,
pub next_page_cursor: Option<String>,
}Expand description
Response for Client::get_open_interest.
Fields§
§symbol: String§category: String§list: Vec<OpenInterestEntry>§next_page_cursor: Option<String>Trait Implementations§
Source§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
Source§impl PartialEq for OpenInterest
impl PartialEq for OpenInterest
Source§fn eq(&self, other: &OpenInterest) -> bool
fn eq(&self, other: &OpenInterest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OpenInterest
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