pub struct FinancialConnectionsAccountOwnership {
pub created: Timestamp,
pub id: FinancialConnectionsAccountOwnershipId,
pub owners: List<FinancialConnectionsAccountOwner>,
}
Expand description
Describes a snapshot of the owners of an account at a particular point in time.
Fields§
§created: Timestamp
Time at which the object was created. Measured in seconds since the Unix epoch.
id: FinancialConnectionsAccountOwnershipId
Unique identifier for the object.
owners: List<FinancialConnectionsAccountOwner>
A paginated list of owners for this account.
Trait Implementations§
Source§impl Clone for FinancialConnectionsAccountOwnership
impl Clone for FinancialConnectionsAccountOwnership
Source§fn clone(&self) -> FinancialConnectionsAccountOwnership
fn clone(&self) -> FinancialConnectionsAccountOwnership
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 FromValueOpt for FinancialConnectionsAccountOwnership
impl FromValueOpt for FinancialConnectionsAccountOwnership
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for FinancialConnectionsAccountOwnership
impl RefUnwindSafe for FinancialConnectionsAccountOwnership
impl Send for FinancialConnectionsAccountOwnership
impl Sync for FinancialConnectionsAccountOwnership
impl Unpin for FinancialConnectionsAccountOwnership
impl UnwindSafe for FinancialConnectionsAccountOwnership
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