pub struct Form4 {
pub accepted_date: Option<String>,
pub filing_date: Option<String>,
pub transaction_date: Option<String>,
pub symbol: String,
pub cik: Option<String>,
pub reporting_name: Option<String>,
pub transaction_type: Option<String>,
pub securities_transacted: Option<f64>,
pub price: Option<f64>,
pub securities_owned: Option<f64>,
pub link: Option<String>,
}Expand description
Form 4 filing (Statement of Changes in Beneficial Ownership)
Fields§
§accepted_date: Option<String>Accepted date
filing_date: Option<String>Filing date
transaction_date: Option<String>Transaction date
symbol: StringStock symbol
cik: Option<String>CIK number
reporting_name: Option<String>Reporting name
transaction_type: Option<String>Transaction type
securities_transacted: Option<f64>Securities transacted
price: Option<f64>Transaction price
securities_owned: Option<f64>Securities owned
link: Option<String>Link to filing
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Form4
impl<'de> Deserialize<'de> for Form4
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 Form4
impl RefUnwindSafe for Form4
impl Send for Form4
impl Sync for Form4
impl Unpin for Form4
impl UnwindSafe for Form4
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