pub struct AdjustEvent {
pub kind: String,
pub increase_pct: Option<String>,
pub old_shares: Option<String>,
pub new_shares: Option<String>,
pub dividend: Option<String>,
pub price_before_event: String,
pub price_after_event: String,
pub date: String,
}Expand description
A single price-adjustment event (capital increase or dividend).
Fields§
§kind: String§increase_pct: Option<String>§dividend: Option<String>§price_before_event: String§price_after_event: String§date: StringTrait Implementations§
Source§impl Clone for AdjustEvent
impl Clone for AdjustEvent
Source§fn clone(&self) -> AdjustEvent
fn clone(&self) -> AdjustEvent
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 moreAuto Trait Implementations§
impl Freeze for AdjustEvent
impl RefUnwindSafe for AdjustEvent
impl Send for AdjustEvent
impl Sync for AdjustEvent
impl Unpin for AdjustEvent
impl UnsafeUnpin for AdjustEvent
impl UnwindSafe for AdjustEvent
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