pub struct NonTradeActivity {
pub id: String,
pub activity_type: ActivityType,
pub date: String,
pub net_amount: String,
pub symbol: Option<String>,
pub qty: Option<String>,
pub per_share_amount: Option<String>,
pub description: Option<String>,
}Expand description
Non-trade activity with detailed fields.
Fields§
§id: StringActivity ID.
activity_type: ActivityTypeActivity type.
date: StringDate.
net_amount: StringNet amount.
symbol: Option<String>Symbol (if applicable).
qty: Option<String>Quantity (if applicable).
Per share amount.
description: Option<String>Description.
Trait Implementations§
Source§impl Clone for NonTradeActivity
impl Clone for NonTradeActivity
Source§fn clone(&self) -> NonTradeActivity
fn clone(&self) -> NonTradeActivity
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 NonTradeActivity
impl Debug for NonTradeActivity
Source§impl<'de> Deserialize<'de> for NonTradeActivity
impl<'de> Deserialize<'de> for NonTradeActivity
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<NonTradeActivity, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<NonTradeActivity, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for NonTradeActivity
impl Serialize for NonTradeActivity
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for NonTradeActivity
impl RefUnwindSafe for NonTradeActivity
impl Send for NonTradeActivity
impl Sync for NonTradeActivity
impl Unpin for NonTradeActivity
impl UnwindSafe for NonTradeActivity
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