Struct plaid::liabilities::StudentLoanStatus[][src]

pub struct StudentLoanStatus {
    pub end_date: Option<NaiveDate>,
    pub type: Option<String>,
}

Fields

end_date: Option<NaiveDate>

The date until which the loan will be in its current status. Dates are returned in an ISO 8601 format (YYYY-MM-DD).

type: Option<String>

The status type of the student loan Possible values: cancelled, charged off, claim, consolidated, deferment, delinquent, discharged, extension, forbearance, in grace, in military, in school, not fully disbursed, other, paid in full, refunded, repayment, transferred

Trait Implementations

impl Clone for StudentLoanStatus[src]

impl Debug for StudentLoanStatus[src]

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

Auto Trait Implementations

impl RefUnwindSafe for StudentLoanStatus[src]

impl Send for StudentLoanStatus[src]

impl Sync for StudentLoanStatus[src]

impl Unpin for StudentLoanStatus[src]

impl UnwindSafe for StudentLoanStatus[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.