Struct aws_sdk_qldb::operation::list_ledgers::ListLedgersInput
source · #[non_exhaustive]pub struct ListLedgersInput {
pub max_results: Option<i32>,
pub next_token: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.max_results: Option<i32>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.
Implementations§
source§impl ListLedgersInput
impl ListLedgersInput
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return in a single ListLedgers request. (The actual number of results returned might be fewer.)
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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.
source§impl ListLedgersInput
impl ListLedgersInput
sourcepub fn builder() -> ListLedgersInputBuilder
pub fn builder() -> ListLedgersInputBuilder
Creates a new builder-style object to manufacture ListLedgersInput.
Trait Implementations§
source§impl Clone for ListLedgersInput
impl Clone for ListLedgersInput
source§fn clone(&self) -> ListLedgersInput
fn clone(&self) -> ListLedgersInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListLedgersInput
impl Debug for ListLedgersInput
source§impl PartialEq for ListLedgersInput
impl PartialEq for ListLedgersInput
source§fn eq(&self, other: &ListLedgersInput) -> bool
fn eq(&self, other: &ListLedgersInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListLedgersInput
Auto Trait Implementations§
impl Freeze for ListLedgersInput
impl RefUnwindSafe for ListLedgersInput
impl Send for ListLedgersInput
impl Sync for ListLedgersInput
impl Unpin for ListLedgersInput
impl UnwindSafe for ListLedgersInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more