pub struct InstitutionalHolder {
pub holder: String,
pub shares: i64,
pub date_reported: DateTime<Utc>,
pub percent_out: Option<f64>,
pub value: Option<i64>,
}Fields§
§holder: String§date_reported: DateTime<Utc>§percent_out: Option<f64>§value: Option<i64>Trait Implementations§
Source§impl Clone for InstitutionalHolder
impl Clone for InstitutionalHolder
Source§fn clone(&self) -> InstitutionalHolder
fn clone(&self) -> InstitutionalHolder
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 moreSource§impl Debug for InstitutionalHolder
impl Debug for InstitutionalHolder
Source§impl<'de> Deserialize<'de> for InstitutionalHolder
impl<'de> Deserialize<'de> for InstitutionalHolder
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 InstitutionalHolder
impl RefUnwindSafe for InstitutionalHolder
impl Send for InstitutionalHolder
impl Sync for InstitutionalHolder
impl Unpin for InstitutionalHolder
impl UnsafeUnpin for InstitutionalHolder
impl UnwindSafe for InstitutionalHolder
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