pub struct WalletListResponse {
pub next_cursor: Option<String>,
pub request_id: String,
pub wallets: Vec<Wallet>,
}Expand description
WalletListResponse defines the response schema for /wallet/list
Fields§
§next_cursor: Option<String>Cursor used for fetching e-wallets created before the latest e-wallet provided in this response
request_id: StringA unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
wallets: Vec<Wallet>An array of e-wallets
Trait Implementations§
Source§impl Clone for WalletListResponse
impl Clone for WalletListResponse
Source§fn clone(&self) -> WalletListResponse
fn clone(&self) -> WalletListResponse
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 WalletListResponse
impl Debug for WalletListResponse
Source§impl Default for WalletListResponse
impl Default for WalletListResponse
Source§fn default() -> WalletListResponse
fn default() -> WalletListResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WalletListResponse
impl<'de> Deserialize<'de> for WalletListResponse
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
Source§impl Display for WalletListResponse
impl Display for WalletListResponse
Auto Trait Implementations§
impl Freeze for WalletListResponse
impl RefUnwindSafe for WalletListResponse
impl Send for WalletListResponse
impl Sync for WalletListResponse
impl Unpin for WalletListResponse
impl UnwindSafe for WalletListResponse
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