pub struct SecFilingRss {
pub title: Option<String>,
pub date: Option<String>,
pub link: Option<String>,
pub symbol: Option<String>,
pub cik: Option<String>,
pub form_type: Option<String>,
}Expand description
RSS Feed item for SEC filings
Fields§
§title: Option<String>Filing title
date: Option<String>Publication date
link: Option<String>Link to filing
symbol: Option<String>Stock symbol
cik: Option<String>CIK number
form_type: Option<String>Form type
Trait Implementations§
Source§impl Clone for SecFilingRss
impl Clone for SecFilingRss
Source§fn clone(&self) -> SecFilingRss
fn clone(&self) -> SecFilingRss
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 SecFilingRss
impl Debug for SecFilingRss
Source§impl<'de> Deserialize<'de> for SecFilingRss
impl<'de> Deserialize<'de> for SecFilingRss
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 SecFilingRss
impl RefUnwindSafe for SecFilingRss
impl Send for SecFilingRss
impl Sync for SecFilingRss
impl Unpin for SecFilingRss
impl UnwindSafe for SecFilingRss
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