pub struct ActionsResponse {
pub symbol: String,
pub dividends: Vec<Dividend>,
pub splits: Vec<StockSplit>,
pub capital_gains: Vec<CapitalGain>,
}Expand description
Response containing all stock actions
Fields§
§symbol: String§dividends: Vec<Dividend>§splits: Vec<StockSplit>§capital_gains: Vec<CapitalGain>Implementations§
Trait Implementations§
Source§impl Clone for ActionsResponse
impl Clone for ActionsResponse
Source§fn clone(&self) -> ActionsResponse
fn clone(&self) -> ActionsResponse
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 ActionsResponse
impl Debug for ActionsResponse
Source§impl<'de> Deserialize<'de> for ActionsResponse
impl<'de> Deserialize<'de> for ActionsResponse
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 ActionsResponse
impl RefUnwindSafe for ActionsResponse
impl Send for ActionsResponse
impl Sync for ActionsResponse
impl Unpin for ActionsResponse
impl UnsafeUnpin for ActionsResponse
impl UnwindSafe for ActionsResponse
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