pub struct CraPartnerInsightsItem {
pub accounts: Option<Vec<CraPartnerInsightsItemAccount>>,
pub institution_id: Option<String>,
pub institution_name: Option<String>,
pub item_id: Option<String>,
}Expand description
The details and metadata for an end user’s Item.
Fields§
§accounts: Option<Vec<CraPartnerInsightsItemAccount>>A list of accounts in the item
institution_id: Option<String>The ID for the institution that the user linked.
institution_name: Option<String>The name of the institution the user linked.
item_id: Option<String>The identifier for the item.
Trait Implementations§
Source§impl Clone for CraPartnerInsightsItem
impl Clone for CraPartnerInsightsItem
Source§fn clone(&self) -> CraPartnerInsightsItem
fn clone(&self) -> CraPartnerInsightsItem
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 CraPartnerInsightsItem
impl Debug for CraPartnerInsightsItem
Source§impl Default for CraPartnerInsightsItem
impl Default for CraPartnerInsightsItem
Source§fn default() -> CraPartnerInsightsItem
fn default() -> CraPartnerInsightsItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CraPartnerInsightsItem
impl<'de> Deserialize<'de> for CraPartnerInsightsItem
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 Display for CraPartnerInsightsItem
impl Display for CraPartnerInsightsItem
Auto Trait Implementations§
impl Freeze for CraPartnerInsightsItem
impl RefUnwindSafe for CraPartnerInsightsItem
impl Send for CraPartnerInsightsItem
impl Sync for CraPartnerInsightsItem
impl Unpin for CraPartnerInsightsItem
impl UnwindSafe for CraPartnerInsightsItem
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