pub struct ListLedgersRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§max_results: Option<i64>The maximum number of results to return in a single ListLedgers request. (The actual number of results returned might be fewer.)
next_token: Option<String>A pagination token, indicating that you want to retrieve the next page of results. If you received a value for NextToken in the response from a previous ListLedgers call, then you should use that value as input here.
Trait Implementations§
Source§impl Clone for ListLedgersRequest
impl Clone for ListLedgersRequest
Source§fn clone(&self) -> ListLedgersRequest
fn clone(&self) -> ListLedgersRequest
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 ListLedgersRequest
impl Debug for ListLedgersRequest
Source§impl Default for ListLedgersRequest
impl Default for ListLedgersRequest
Source§fn default() -> ListLedgersRequest
fn default() -> ListLedgersRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListLedgersRequest
impl PartialEq for ListLedgersRequest
Source§impl Serialize for ListLedgersRequest
impl Serialize for ListLedgersRequest
impl StructuralPartialEq for ListLedgersRequest
Auto Trait Implementations§
impl Freeze for ListLedgersRequest
impl RefUnwindSafe for ListLedgersRequest
impl Send for ListLedgersRequest
impl Sync for ListLedgersRequest
impl Unpin for ListLedgersRequest
impl UnwindSafe for ListLedgersRequest
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