pub struct ListCashReceiptsResponse {
pub has_next: bool,
pub last_cursor: u64,
pub data: Vec<CashReceipt>,
}
Fields§
§has_next: bool
§last_cursor: u64
§data: Vec<CashReceipt>
Implementations§
Source§impl ListCashReceiptsResponse
impl ListCashReceiptsResponse
Sourcepub fn builder() -> ListCashReceiptsResponseBuilder<((), (), ())>
pub fn builder() -> ListCashReceiptsResponseBuilder<((), (), ())>
Create a builder for building ListCashReceiptsResponse
.
On the builder, call .has_next(...)
, .last_cursor(...)
, .data(...)
to set the values of the fields.
Finally, call .build()
to create the instance of ListCashReceiptsResponse
.
Trait Implementations§
Source§impl Clone for ListCashReceiptsResponse
impl Clone for ListCashReceiptsResponse
Source§fn clone(&self) -> ListCashReceiptsResponse
fn clone(&self) -> ListCashReceiptsResponse
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 Debug for ListCashReceiptsResponse
impl Debug for ListCashReceiptsResponse
Source§impl<'de> Deserialize<'de> for ListCashReceiptsResponse
impl<'de> Deserialize<'de> for ListCashReceiptsResponse
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 ListCashReceiptsResponse
impl RefUnwindSafe for ListCashReceiptsResponse
impl Send for ListCashReceiptsResponse
impl Sync for ListCashReceiptsResponse
impl Unpin for ListCashReceiptsResponse
impl UnwindSafe for ListCashReceiptsResponse
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