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: TA string date with the format YYYY-MM-DD. Start date is inclusive.
end_date: TA string date with the format YYYY-MM-DD. End date is inclusive.
options: Option<GetTransactionsOptions<T>>Trait Implementations§
Source§impl<T: Clone + AsRef<str>> Clone for GetTransactionsRequest<T>
impl<T: Clone + AsRef<str>> Clone for GetTransactionsRequest<T>
Source§fn clone(&self) -> GetTransactionsRequest<T>
fn clone(&self) -> GetTransactionsRequest<T>
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<T> Serialize for GetTransactionsRequest<T>
impl<T> Serialize for GetTransactionsRequest<T>
impl<T: Copy + AsRef<str>> Copy for GetTransactionsRequest<T>
Auto Trait Implementations§
impl<T> Freeze for GetTransactionsRequest<T>where
T: Freeze,
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§
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