pub struct InsiderPurchase {
pub period: String,
pub purchases_shares: Option<i64>,
pub purchases_transactions: Option<i64>,
pub sales_shares: Option<i64>,
pub sales_transactions: Option<i64>,
pub net_shares: Option<i64>,
pub net_transactions: Option<i64>,
pub total_insider_shares: Option<i64>,
pub net_percent_insider_shares: Option<f64>,
pub buy_percent_insider_shares: Option<f64>,
pub sell_percent_insider_shares: Option<f64>,
}Fields§
§period: String§purchases_transactions: Option<i64>§sales_transactions: Option<i64>§net_transactions: Option<i64>Trait Implementations§
Source§impl Clone for InsiderPurchase
impl Clone for InsiderPurchase
Source§fn clone(&self) -> InsiderPurchase
fn clone(&self) -> InsiderPurchase
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 InsiderPurchase
impl Debug for InsiderPurchase
Source§impl<'de> Deserialize<'de> for InsiderPurchase
impl<'de> Deserialize<'de> for InsiderPurchase
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 InsiderPurchase
impl RefUnwindSafe for InsiderPurchase
impl Send for InsiderPurchase
impl Sync for InsiderPurchase
impl Unpin for InsiderPurchase
impl UnsafeUnpin for InsiderPurchase
impl UnwindSafe for InsiderPurchase
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