pub struct ListContributorInsightsInput {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub table_name: Option<String>,
}
Fields§
§max_results: Option<i64>
Maximum number of results to return per page.
next_token: Option<String>
A token to for the desired page, if there is one.
table_name: Option<String>
The name of the table.
Trait Implementations§
Source§impl Clone for ListContributorInsightsInput
impl Clone for ListContributorInsightsInput
Source§fn clone(&self) -> ListContributorInsightsInput
fn clone(&self) -> ListContributorInsightsInput
Returns a copy 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 ListContributorInsightsInput
impl Debug for ListContributorInsightsInput
Source§impl Default for ListContributorInsightsInput
impl Default for ListContributorInsightsInput
Source§fn default() -> ListContributorInsightsInput
fn default() -> ListContributorInsightsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListContributorInsightsInput
impl PartialEq for ListContributorInsightsInput
Source§fn eq(&self, other: &ListContributorInsightsInput) -> bool
fn eq(&self, other: &ListContributorInsightsInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListContributorInsightsInput
Auto Trait Implementations§
impl Freeze for ListContributorInsightsInput
impl RefUnwindSafe for ListContributorInsightsInput
impl Send for ListContributorInsightsInput
impl Sync for ListContributorInsightsInput
impl Unpin for ListContributorInsightsInput
impl UnwindSafe for ListContributorInsightsInput
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