pub struct ListLedgersResponse {
pub ledgers: Option<Vec<LedgerSummary>>,
pub next_token: Option<String>,
}Fields§
§ledgers: Option<Vec<LedgerSummary>>The array of ledger summaries that are associated with the current AWS account and Region.
next_token: Option<String>A pagination token, indicating whether there are more results available:
-
If
NextTokenis empty, then the last page of results has been processed and there are no more results to be retrieved. -
If
NextTokenis not empty, then there are more results available. To retrieve the next page of results, use the value ofNextTokenin a subsequentListLedgerscall.
Trait Implementations§
Source§impl Clone for ListLedgersResponse
impl Clone for ListLedgersResponse
Source§fn clone(&self) -> ListLedgersResponse
fn clone(&self) -> ListLedgersResponse
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 ListLedgersResponse
impl Debug for ListLedgersResponse
Source§impl Default for ListLedgersResponse
impl Default for ListLedgersResponse
Source§fn default() -> ListLedgersResponse
fn default() -> ListLedgersResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListLedgersResponse
impl<'de> Deserialize<'de> for ListLedgersResponse
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
Source§impl PartialEq for ListLedgersResponse
impl PartialEq for ListLedgersResponse
impl StructuralPartialEq for ListLedgersResponse
Auto Trait Implementations§
impl Freeze for ListLedgersResponse
impl RefUnwindSafe for ListLedgersResponse
impl Send for ListLedgersResponse
impl Sync for ListLedgersResponse
impl Unpin for ListLedgersResponse
impl UnwindSafe for ListLedgersResponse
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