pub struct OpenInterestResult {
pub category: Option<String>,
pub symbol: Option<String>,
pub list: Option<Vec<OpenInterestRecord>>,
pub next_page_cursor: Option<String>,
}Fields§
§category: Option<String>§symbol: Option<String>§list: Option<Vec<OpenInterestRecord>>§next_page_cursor: Option<String>Trait Implementations§
Source§impl Clone for OpenInterestResult
impl Clone for OpenInterestResult
Source§fn clone(&self) -> OpenInterestResult
fn clone(&self) -> OpenInterestResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OpenInterestResult
impl Debug for OpenInterestResult
Source§impl<'de> Deserialize<'de> for OpenInterestResult
impl<'de> Deserialize<'de> for OpenInterestResult
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 OpenInterestResult
impl RefUnwindSafe for OpenInterestResult
impl Send for OpenInterestResult
impl Sync for OpenInterestResult
impl Unpin for OpenInterestResult
impl UnsafeUnpin for OpenInterestResult
impl UnwindSafe for OpenInterestResult
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