pub struct TransferGetResponse {
pub request_id: String,
pub transfer: Transfer,
}Expand description
Defines the response schema for /transfer/get
Fields§
§request_id: StringA unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
transfer: TransferRepresents a transfer within the Transfers API.
Trait Implementations§
Source§impl Clone for TransferGetResponse
impl Clone for TransferGetResponse
Source§fn clone(&self) -> TransferGetResponse
fn clone(&self) -> TransferGetResponse
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 TransferGetResponse
impl Debug for TransferGetResponse
Source§impl<'de> Deserialize<'de> for TransferGetResponse
impl<'de> Deserialize<'de> for TransferGetResponse
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 TransferGetResponse
impl Display for TransferGetResponse
Auto Trait Implementations§
impl Freeze for TransferGetResponse
impl RefUnwindSafe for TransferGetResponse
impl Send for TransferGetResponse
impl Sync for TransferGetResponse
impl Unpin for TransferGetResponse
impl UnwindSafe for TransferGetResponse
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