Struct plaid::holdings::Security [−][src]
Fields
security_id: StringA unique, Plaid-specific identifier for the security, used to associate securities with holdings. Like all Plaid identifiers, the security_id is case sensitive.
isin: Option<String>12-character ISIN, a globally unique securities identifier.
cusip: Option<String>9-character CUSIP, an identifier assigned to North American securities.
sedol: Option<String>7-character SEDOL, an identifier assigned to securities in the UK.
institution_security_id: Option<String>An identifier given to the security by the institution
institution_id: Option<String>If institution_security_id is present, this field indicates the Plaid institution_id of the institution to whom the identifier belongs.
proxy_security_id: Option<String>In certain cases, Plaid will provide the ID of another security whose performance resembles this security, typically when the original security has low volume, or when a private security can be modeled with a publicly traded security.
name: Option<String>A descriptive name for the security, suitable for display.
ticker_symbol: Option<String>The security’s trading symbol for publicly traded securities, and otherwise a short identifier if available.
is_cash_equivalent: boolIndicates that a security is a highly liquid asset and can be treated like cash.
type: Option<String>The security type of the holding.
close_price: Option<f64>Price of the security at the close of the previous trading session. null for non-public securities.
close_price_as_of: Option<NaiveDate>Date for which close_price is accurate. Always null if close_price is null.
iso_currency_code: Option<String>The ISO-4217 currency code of the price given. Always null if unofficial_currency_code is non-null.
unofficial_currency_code: Option<String>The unofficial currency code associated with the security.
Trait Implementations
impl Clone for Security[src]
impl Debug for Security[src]
impl<'de> Deserialize<'de> for Security[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl RefUnwindSafe for Security[src]
impl Send for Security[src]
impl Sync for Security[src]
impl Unpin for Security[src]
impl UnwindSafe for Security[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,