#[non_exhaustive]pub struct TopicIrContributionAnalysisBuilder { /* private fields */ }
Expand description
A builder for TopicIrContributionAnalysis
.
Implementations§
source§impl TopicIrContributionAnalysisBuilder
impl TopicIrContributionAnalysisBuilder
sourcepub fn factors(self, input: ContributionAnalysisFactor) -> Self
pub fn factors(self, input: ContributionAnalysisFactor) -> Self
Appends an item to factors
.
To override the contents of this collection use set_factors
.
The factors for a TopicIRContributionAnalysis
.
sourcepub fn set_factors(self, input: Option<Vec<ContributionAnalysisFactor>>) -> Self
pub fn set_factors(self, input: Option<Vec<ContributionAnalysisFactor>>) -> Self
The factors for a TopicIRContributionAnalysis
.
sourcepub fn get_factors(&self) -> &Option<Vec<ContributionAnalysisFactor>>
pub fn get_factors(&self) -> &Option<Vec<ContributionAnalysisFactor>>
The factors for a TopicIRContributionAnalysis
.
sourcepub fn time_ranges(self, input: ContributionAnalysisTimeRanges) -> Self
pub fn time_ranges(self, input: ContributionAnalysisTimeRanges) -> Self
The time ranges for the TopicIRContributionAnalysis
.
sourcepub fn set_time_ranges(
self,
input: Option<ContributionAnalysisTimeRanges>,
) -> Self
pub fn set_time_ranges( self, input: Option<ContributionAnalysisTimeRanges>, ) -> Self
The time ranges for the TopicIRContributionAnalysis
.
sourcepub fn get_time_ranges(&self) -> &Option<ContributionAnalysisTimeRanges>
pub fn get_time_ranges(&self) -> &Option<ContributionAnalysisTimeRanges>
The time ranges for the TopicIRContributionAnalysis
.
sourcepub fn direction(self, input: ContributionAnalysisDirection) -> Self
pub fn direction(self, input: ContributionAnalysisDirection) -> Self
The direction for the TopicIRContributionAnalysis
.
sourcepub fn set_direction(self, input: Option<ContributionAnalysisDirection>) -> Self
pub fn set_direction(self, input: Option<ContributionAnalysisDirection>) -> Self
The direction for the TopicIRContributionAnalysis
.
sourcepub fn get_direction(&self) -> &Option<ContributionAnalysisDirection>
pub fn get_direction(&self) -> &Option<ContributionAnalysisDirection>
The direction for the TopicIRContributionAnalysis
.
sourcepub fn sort_type(self, input: ContributionAnalysisSortType) -> Self
pub fn sort_type(self, input: ContributionAnalysisSortType) -> Self
The sort type for the TopicIRContributionAnalysis
.
sourcepub fn set_sort_type(self, input: Option<ContributionAnalysisSortType>) -> Self
pub fn set_sort_type(self, input: Option<ContributionAnalysisSortType>) -> Self
The sort type for the TopicIRContributionAnalysis
.
sourcepub fn get_sort_type(&self) -> &Option<ContributionAnalysisSortType>
pub fn get_sort_type(&self) -> &Option<ContributionAnalysisSortType>
The sort type for the TopicIRContributionAnalysis
.
sourcepub fn build(self) -> TopicIrContributionAnalysis
pub fn build(self) -> TopicIrContributionAnalysis
Consumes the builder and constructs a TopicIrContributionAnalysis
.
Trait Implementations§
source§impl Clone for TopicIrContributionAnalysisBuilder
impl Clone for TopicIrContributionAnalysisBuilder
source§fn clone(&self) -> TopicIrContributionAnalysisBuilder
fn clone(&self) -> TopicIrContributionAnalysisBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for TopicIrContributionAnalysisBuilder
impl Default for TopicIrContributionAnalysisBuilder
source§fn default() -> TopicIrContributionAnalysisBuilder
fn default() -> TopicIrContributionAnalysisBuilder
source§impl PartialEq for TopicIrContributionAnalysisBuilder
impl PartialEq for TopicIrContributionAnalysisBuilder
source§fn eq(&self, other: &TopicIrContributionAnalysisBuilder) -> bool
fn eq(&self, other: &TopicIrContributionAnalysisBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for TopicIrContributionAnalysisBuilder
Auto Trait Implementations§
impl Freeze for TopicIrContributionAnalysisBuilder
impl RefUnwindSafe for TopicIrContributionAnalysisBuilder
impl Send for TopicIrContributionAnalysisBuilder
impl Sync for TopicIrContributionAnalysisBuilder
impl Unpin for TopicIrContributionAnalysisBuilder
impl UnwindSafe for TopicIrContributionAnalysisBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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