pub struct EmploymentVerificationGetResponse {
pub employments: Vec<EmploymentVerification>,
pub request_id: String,
}
Expand description
EmploymentVerificationGetResponse defines the response schema for /employment/verification/get
.
Fields§
§employments: Vec<EmploymentVerification>
A list of employment verification summaries.
request_id: String
A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
Trait Implementations§
Source§impl Clone for EmploymentVerificationGetResponse
impl Clone for EmploymentVerificationGetResponse
Source§fn clone(&self) -> EmploymentVerificationGetResponse
fn clone(&self) -> EmploymentVerificationGetResponse
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 Default for EmploymentVerificationGetResponse
impl Default for EmploymentVerificationGetResponse
Source§fn default() -> EmploymentVerificationGetResponse
fn default() -> EmploymentVerificationGetResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EmploymentVerificationGetResponse
impl<'de> Deserialize<'de> for EmploymentVerificationGetResponse
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 EmploymentVerificationGetResponse
impl RefUnwindSafe for EmploymentVerificationGetResponse
impl Send for EmploymentVerificationGetResponse
impl Sync for EmploymentVerificationGetResponse
impl Unpin for EmploymentVerificationGetResponse
impl UnwindSafe for EmploymentVerificationGetResponse
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