pub struct BeaconUserHistoryListResponse {
pub beacon_users: Vec<BeaconUser>,
pub next_cursor: Option<String>,
pub request_id: String,
}
Expand description
The response schema for /beacon/user/history/list
Fields§
§beacon_users: Vec<BeaconUser>
§next_cursor: Option<String>
An identifier that determines which page of results you receive.
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 BeaconUserHistoryListResponse
impl Clone for BeaconUserHistoryListResponse
Source§fn clone(&self) -> BeaconUserHistoryListResponse
fn clone(&self) -> BeaconUserHistoryListResponse
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 BeaconUserHistoryListResponse
impl Default for BeaconUserHistoryListResponse
Source§fn default() -> BeaconUserHistoryListResponse
fn default() -> BeaconUserHistoryListResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BeaconUserHistoryListResponse
impl<'de> Deserialize<'de> for BeaconUserHistoryListResponse
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 BeaconUserHistoryListResponse
impl RefUnwindSafe for BeaconUserHistoryListResponse
impl Send for BeaconUserHistoryListResponse
impl Sync for BeaconUserHistoryListResponse
impl Unpin for BeaconUserHistoryListResponse
impl UnwindSafe for BeaconUserHistoryListResponse
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