pub struct CoinGreeksItem {
pub base_coin: Option<String>,
pub total_delta: Option<String>,
pub total_gamma: Option<String>,
pub total_vega: Option<String>,
pub total_theta: Option<String>,
}Fields§
§base_coin: Option<String>§total_delta: Option<String>§total_gamma: Option<String>§total_vega: Option<String>§total_theta: Option<String>Trait Implementations§
Source§impl Clone for CoinGreeksItem
impl Clone for CoinGreeksItem
Source§fn clone(&self) -> CoinGreeksItem
fn clone(&self) -> CoinGreeksItem
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 CoinGreeksItem
impl Debug for CoinGreeksItem
Source§impl<'de> Deserialize<'de> for CoinGreeksItem
impl<'de> Deserialize<'de> for CoinGreeksItem
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 CoinGreeksItem
impl RefUnwindSafe for CoinGreeksItem
impl Send for CoinGreeksItem
impl Sync for CoinGreeksItem
impl Unpin for CoinGreeksItem
impl UnsafeUnpin for CoinGreeksItem
impl UnwindSafe for CoinGreeksItem
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