pub struct ListJournalKinesisStreamsForLedgerRequest {
pub ledger_name: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§ledger_name: StringThe name of the ledger.
max_results: Option<i64>The maximum number of results to return in a single ListJournalKinesisStreamsForLedger 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 ListJournalKinesisStreamsForLedger call, you should use that value as input here.
Trait Implementations§
Source§impl Clone for ListJournalKinesisStreamsForLedgerRequest
impl Clone for ListJournalKinesisStreamsForLedgerRequest
Source§fn clone(&self) -> ListJournalKinesisStreamsForLedgerRequest
fn clone(&self) -> ListJournalKinesisStreamsForLedgerRequest
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 Default for ListJournalKinesisStreamsForLedgerRequest
impl Default for ListJournalKinesisStreamsForLedgerRequest
Source§fn default() -> ListJournalKinesisStreamsForLedgerRequest
fn default() -> ListJournalKinesisStreamsForLedgerRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListJournalKinesisStreamsForLedgerRequest
impl PartialEq for ListJournalKinesisStreamsForLedgerRequest
Source§fn eq(&self, other: &ListJournalKinesisStreamsForLedgerRequest) -> bool
fn eq(&self, other: &ListJournalKinesisStreamsForLedgerRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListJournalKinesisStreamsForLedgerRequest
Auto Trait Implementations§
impl Freeze for ListJournalKinesisStreamsForLedgerRequest
impl RefUnwindSafe for ListJournalKinesisStreamsForLedgerRequest
impl Send for ListJournalKinesisStreamsForLedgerRequest
impl Sync for ListJournalKinesisStreamsForLedgerRequest
impl Unpin for ListJournalKinesisStreamsForLedgerRequest
impl UnwindSafe for ListJournalKinesisStreamsForLedgerRequest
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