#[non_exhaustive]pub struct ListContributorInsightsOutputBuilder { /* private fields */ }
Expand description
A builder for ListContributorInsightsOutput
.
Implementations§
Source§impl ListContributorInsightsOutputBuilder
impl ListContributorInsightsOutputBuilder
Sourcepub fn contributor_insights_summaries(
self,
input: ContributorInsightsSummary,
) -> Self
pub fn contributor_insights_summaries( self, input: ContributorInsightsSummary, ) -> Self
Appends an item to contributor_insights_summaries
.
To override the contents of this collection use set_contributor_insights_summaries
.
A list of ContributorInsightsSummary.
Sourcepub fn set_contributor_insights_summaries(
self,
input: Option<Vec<ContributorInsightsSummary>>,
) -> Self
pub fn set_contributor_insights_summaries( self, input: Option<Vec<ContributorInsightsSummary>>, ) -> Self
A list of ContributorInsightsSummary.
Sourcepub fn get_contributor_insights_summaries(
&self,
) -> &Option<Vec<ContributorInsightsSummary>>
pub fn get_contributor_insights_summaries( &self, ) -> &Option<Vec<ContributorInsightsSummary>>
A list of ContributorInsightsSummary.
Sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token to go to the next page if there is one.
Sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token to go to the next page if there is one.
Sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A token to go to the next page if there is one.
Sourcepub fn build(self) -> ListContributorInsightsOutput
pub fn build(self) -> ListContributorInsightsOutput
Consumes the builder and constructs a ListContributorInsightsOutput
.
Trait Implementations§
Source§impl Clone for ListContributorInsightsOutputBuilder
impl Clone for ListContributorInsightsOutputBuilder
Source§fn clone(&self) -> ListContributorInsightsOutputBuilder
fn clone(&self) -> ListContributorInsightsOutputBuilder
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 ListContributorInsightsOutputBuilder
impl Default for ListContributorInsightsOutputBuilder
Source§fn default() -> ListContributorInsightsOutputBuilder
fn default() -> ListContributorInsightsOutputBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListContributorInsightsOutputBuilder
impl PartialEq for ListContributorInsightsOutputBuilder
Source§fn eq(&self, other: &ListContributorInsightsOutputBuilder) -> bool
fn eq(&self, other: &ListContributorInsightsOutputBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListContributorInsightsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListContributorInsightsOutputBuilder
impl RefUnwindSafe for ListContributorInsightsOutputBuilder
impl Send for ListContributorInsightsOutputBuilder
impl Sync for ListContributorInsightsOutputBuilder
impl Unpin for ListContributorInsightsOutputBuilder
impl UnwindSafe for ListContributorInsightsOutputBuilder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.