pub enum BaseReportWarningCode {
OwnersUnavailable,
TransactionsUnavailable,
UserFraudAlert,
}Expand description
The warning code identifies a specific kind of warning. OWNERS_UNAVAILABLE indicates that account-owner information is not available. TRANSACTIONS_UNAVAILABLE indicates that transactions information associated with Credit and Depository accounts are unavailable. USER_FRAUD_ALERT indicates that the User has placed a fraud alert on their Plaid Check consumer report due to suspected fraud.
Variants§
UserFraudAlert
Trait Implementations§
Source§impl Clone for BaseReportWarningCode
impl Clone for BaseReportWarningCode
Source§fn clone(&self) -> BaseReportWarningCode
fn clone(&self) -> BaseReportWarningCode
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 BaseReportWarningCode
impl Debug for BaseReportWarningCode
Source§impl<'de> Deserialize<'de> for BaseReportWarningCode
impl<'de> Deserialize<'de> for BaseReportWarningCode
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
Auto Trait Implementations§
impl Freeze for BaseReportWarningCode
impl RefUnwindSafe for BaseReportWarningCode
impl Send for BaseReportWarningCode
impl Sync for BaseReportWarningCode
impl Unpin for BaseReportWarningCode
impl UnwindSafe for BaseReportWarningCode
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