pub struct PaymentsListWeeklyEarningsRequest<'a> {
pub end_lt: Option<String>,
pub ids: Option<String>,
pub page: Option<i64>,
pub page_size: Option<i64>,
pub start_gte: Option<String>,
pub types: Option<String>,
/* private fields */
}
Expand description
Create this with the associated client method.
That method takes required values as arguments. Set optional values using builder methods on this struct.
Fields§
§end_lt: Option<String>
§ids: Option<String>
§page: Option<i64>
§page_size: Option<i64>
§start_gte: Option<String>
§types: Option<String>
Implementations§
source§impl<'a> PaymentsListWeeklyEarningsRequest<'a>
impl<'a> PaymentsListWeeklyEarningsRequest<'a>
pub async fn send(self) -> InMemoryResult<()>
pub fn end_lt(self, end_lt: &str) -> Self
pub fn ids(self, ids: &str) -> Self
pub fn page(self, page: i64) -> Self
pub fn page_size(self, page_size: i64) -> Self
pub fn start_gte(self, start_gte: &str) -> Self
pub fn types(self, types: &str) -> Self
Trait Implementations§
source§impl<'a> Clone for PaymentsListWeeklyEarningsRequest<'a>
impl<'a> Clone for PaymentsListWeeklyEarningsRequest<'a>
source§fn clone(&self) -> PaymentsListWeeklyEarningsRequest<'a>
fn clone(&self) -> PaymentsListWeeklyEarningsRequest<'a>
Returns a copy 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<'a> IntoFuture for PaymentsListWeeklyEarningsRequest<'a>
impl<'a> IntoFuture for PaymentsListWeeklyEarningsRequest<'a>
§type Output = Result<(), Error<Response<InMemoryBody>>>
type Output = Result<(), Error<Response<InMemoryBody>>>
The output that the future will produce on completion.
§type IntoFuture = Pin<Box<dyn Future<Output = <PaymentsListWeeklyEarningsRequest<'a> as IntoFuture>::Output> + Send + 'a, Global>>
type IntoFuture = Pin<Box<dyn Future<Output = <PaymentsListWeeklyEarningsRequest<'a> as IntoFuture>::Output> + Send + 'a, Global>>
Which kind of future are we turning this into?
source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for PaymentsListWeeklyEarningsRequest<'a>
impl<'a> Send for PaymentsListWeeklyEarningsRequest<'a>
impl<'a> Sync for PaymentsListWeeklyEarningsRequest<'a>
impl<'a> Unpin for PaymentsListWeeklyEarningsRequest<'a>
impl<'a> !UnwindSafe for PaymentsListWeeklyEarningsRequest<'a>
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