pub struct ListContributorInsightsOutput {
pub contributor_insights_summaries: Option<Vec<ContributorInsightsSummary>>,
pub next_token: Option<String>,
}
Fields§
§contributor_insights_summaries: Option<Vec<ContributorInsightsSummary>>
A list of ContributorInsightsSummary.
next_token: Option<String>
A token to go to the next page if there is one.
Trait Implementations§
Source§impl Clone for ListContributorInsightsOutput
impl Clone for ListContributorInsightsOutput
Source§fn clone(&self) -> ListContributorInsightsOutput
fn clone(&self) -> ListContributorInsightsOutput
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 Default for ListContributorInsightsOutput
impl Default for ListContributorInsightsOutput
Source§fn default() -> ListContributorInsightsOutput
fn default() -> ListContributorInsightsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListContributorInsightsOutput
impl<'de> Deserialize<'de> for ListContributorInsightsOutput
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 ListContributorInsightsOutput
impl PartialEq for ListContributorInsightsOutput
Source§fn eq(&self, other: &ListContributorInsightsOutput) -> bool
fn eq(&self, other: &ListContributorInsightsOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListContributorInsightsOutput
Auto Trait Implementations§
impl Freeze for ListContributorInsightsOutput
impl RefUnwindSafe for ListContributorInsightsOutput
impl Send for ListContributorInsightsOutput
impl Sync for ListContributorInsightsOutput
impl Unpin for ListContributorInsightsOutput
impl UnwindSafe for ListContributorInsightsOutput
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