pub struct AccountsInstrument {
pub cusip: Option<String>,
pub symbol: Option<String>,
pub description: Option<String>,
pub instrument_id: Option<i64>,
pub net_change: Option<f64>,
pub type: Option<String>,
}Fields§
§cusip: Option<String>§symbol: Option<String>§description: Option<String>§instrument_id: Option<i64>§net_change: Option<f64>§type: Option<String>Trait Implementations§
Source§impl Clone for AccountsInstrument
impl Clone for AccountsInstrument
Source§fn clone(&self) -> AccountsInstrument
fn clone(&self) -> AccountsInstrument
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 AccountsInstrument
impl Debug for AccountsInstrument
Source§impl<'de> Deserialize<'de> for AccountsInstrument
impl<'de> Deserialize<'de> for AccountsInstrument
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 AccountsInstrument
impl RefUnwindSafe for AccountsInstrument
impl Send for AccountsInstrument
impl Sync for AccountsInstrument
impl Unpin for AccountsInstrument
impl UnsafeUnpin for AccountsInstrument
impl UnwindSafe for AccountsInstrument
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