Struct rplaid::model::GetTransactionsRequest
source · [−]pub struct GetTransactionsRequest<T: AsRef<str>> {
pub access_token: T,
pub start_date: T,
pub end_date: T,
pub options: Option<GetTransactionsOptions<T>>,
}
Fields
access_token: T
start_date: T
A string date with the format YYYY-MM-DD. Start date is inclusive.
end_date: T
A string date with the format YYYY-MM-DD. End date is inclusive.
options: Option<GetTransactionsOptions<T>>
Trait Implementations
sourceimpl<T: Clone + AsRef<str>> Clone for GetTransactionsRequest<T>
impl<T: Clone + AsRef<str>> Clone for GetTransactionsRequest<T>
sourcefn clone(&self) -> GetTransactionsRequest<T>
fn clone(&self) -> GetTransactionsRequest<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl<T: Copy + AsRef<str>> Copy for GetTransactionsRequest<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for GetTransactionsRequest<T> where
T: RefUnwindSafe,
impl<T> Send for GetTransactionsRequest<T> where
T: Send,
impl<T> Sync for GetTransactionsRequest<T> where
T: Sync,
impl<T> Unpin for GetTransactionsRequest<T> where
T: Unpin,
impl<T> UnwindSafe for GetTransactionsRequest<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more