pub struct BankConnectionsResourceOwnershipRefresh {
pub last_attempted_at: Timestamp,
pub next_refresh_available_at: Option<Timestamp>,
pub status: BankConnectionsResourceOwnershipRefreshStatus,
}
Fields§
§last_attempted_at: Timestamp
The time at which the last refresh attempt was initiated. Measured in seconds since the Unix epoch.
next_refresh_available_at: Option<Timestamp>
Time at which the next ownership refresh can be initiated.
This value will be null
when status
is pending
.
Measured in seconds since the Unix epoch.
status: BankConnectionsResourceOwnershipRefreshStatus
The status of the last refresh attempt.
Trait Implementations§
Source§impl Clone for BankConnectionsResourceOwnershipRefresh
impl Clone for BankConnectionsResourceOwnershipRefresh
Source§fn clone(&self) -> BankConnectionsResourceOwnershipRefresh
fn clone(&self) -> BankConnectionsResourceOwnershipRefresh
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 BankConnectionsResourceOwnershipRefresh
impl FromValueOpt for BankConnectionsResourceOwnershipRefresh
fn from_value(v: Value) -> Option<Self>
impl Copy for BankConnectionsResourceOwnershipRefresh
Auto Trait Implementations§
impl Freeze for BankConnectionsResourceOwnershipRefresh
impl RefUnwindSafe for BankConnectionsResourceOwnershipRefresh
impl Send for BankConnectionsResourceOwnershipRefresh
impl Sync for BankConnectionsResourceOwnershipRefresh
impl Unpin for BankConnectionsResourceOwnershipRefresh
impl UnwindSafe for BankConnectionsResourceOwnershipRefresh
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