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