pub struct CashDividend {
pub id: String,
pub symbol: String,
pub cusip: String,
pub rate: f64,
pub special: bool,
pub foreign: bool,
pub process_date: String,
pub ex_date: String,
pub record_date: Option<String>,
pub payable_date: Option<String>,
pub due_bill_on_date: Option<String>,
pub due_bill_off_date: Option<String>,
}Fields§
§id: String§symbol: String§cusip: String§rate: f64§special: bool§foreign: bool§process_date: String§ex_date: String§record_date: Option<String>§payable_date: Option<String>§due_bill_on_date: Option<String>§due_bill_off_date: Option<String>Trait Implementations§
Source§impl Clone for CashDividend
impl Clone for CashDividend
Source§fn clone(&self) -> CashDividend
fn clone(&self) -> CashDividend
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 CashDividend
impl Debug for CashDividend
Source§impl Default for CashDividend
impl Default for CashDividend
Source§fn default() -> CashDividend
fn default() -> CashDividend
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CashDividend
impl<'de> Deserialize<'de> for CashDividend
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
Source§impl PartialEq for CashDividend
impl PartialEq for CashDividend
impl StructuralPartialEq for CashDividend
Auto Trait Implementations§
impl Freeze for CashDividend
impl RefUnwindSafe for CashDividend
impl Send for CashDividend
impl Sync for CashDividend
impl Unpin for CashDividend
impl UnwindSafe for CashDividend
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