Struct plaid::item::ProductStatus[][src]

pub struct ProductStatus {
    pub last_successful_update: Option<DateTime<Utc>>,
    pub last_failed_update: Option<DateTime<Utc>>,
}

Fields

last_successful_update: Option<DateTime<Utc>>

ISO 8601 timestamp of the last successful transactions update for the Item. The status will update each time Plaid successfully connects with the institution, regardless of whether any new data is available in the update.

last_failed_update: Option<DateTime<Utc>>

ISO 8601 timestamp of the last failed transactions update for the Item. The status will update each time Plaid fails an attempt to connect with the institution, regardless of whether any new data is available in the update.

Trait Implementations

impl Clone for ProductStatus[src]

impl Debug for ProductStatus[src]

impl<'de> Deserialize<'de> for ProductStatus[src]

Auto Trait Implementations

impl RefUnwindSafe for ProductStatus[src]

impl Send for ProductStatus[src]

impl Sync for ProductStatus[src]

impl Unpin for ProductStatus[src]

impl UnwindSafe for ProductStatus[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.