#[non_exhaustive]pub struct AnalyticsIntentNodeSummaryBuilder { /* private fields */ }Expand description
A builder for AnalyticsIntentNodeSummary.
Implementations§
source§impl AnalyticsIntentNodeSummaryBuilder
impl AnalyticsIntentNodeSummaryBuilder
sourcepub fn intent_name(self, input: impl Into<String>) -> Self
pub fn intent_name(self, input: impl Into<String>) -> Self
The name of the intent at the end of the requested path.
sourcepub fn set_intent_name(self, input: Option<String>) -> Self
pub fn set_intent_name(self, input: Option<String>) -> Self
The name of the intent at the end of the requested path.
sourcepub fn get_intent_name(&self) -> &Option<String>
pub fn get_intent_name(&self) -> &Option<String>
The name of the intent at the end of the requested path.
sourcepub fn intent_path(self, input: impl Into<String>) -> Self
pub fn intent_path(self, input: impl Into<String>) -> Self
The path.
sourcepub fn set_intent_path(self, input: Option<String>) -> Self
pub fn set_intent_path(self, input: Option<String>) -> Self
The path.
sourcepub fn get_intent_path(&self) -> &Option<String>
pub fn get_intent_path(&self) -> &Option<String>
The path.
sourcepub fn intent_count(self, input: i32) -> Self
pub fn intent_count(self, input: i32) -> Self
The total number of sessions that follow the given path to the given intent.
sourcepub fn set_intent_count(self, input: Option<i32>) -> Self
pub fn set_intent_count(self, input: Option<i32>) -> Self
The total number of sessions that follow the given path to the given intent.
sourcepub fn get_intent_count(&self) -> &Option<i32>
pub fn get_intent_count(&self) -> &Option<i32>
The total number of sessions that follow the given path to the given intent.
sourcepub fn intent_level(self, input: i32) -> Self
pub fn intent_level(self, input: i32) -> Self
The number of intents up to and including the requested path.
sourcepub fn set_intent_level(self, input: Option<i32>) -> Self
pub fn set_intent_level(self, input: Option<i32>) -> Self
The number of intents up to and including the requested path.
sourcepub fn get_intent_level(&self) -> &Option<i32>
pub fn get_intent_level(&self) -> &Option<i32>
The number of intents up to and including the requested path.
sourcepub fn node_type(self, input: AnalyticsNodeType) -> Self
pub fn node_type(self, input: AnalyticsNodeType) -> Self
Specifies whether the node is the end of a path (Exit) or not (Inner).
sourcepub fn set_node_type(self, input: Option<AnalyticsNodeType>) -> Self
pub fn set_node_type(self, input: Option<AnalyticsNodeType>) -> Self
Specifies whether the node is the end of a path (Exit) or not (Inner).
sourcepub fn get_node_type(&self) -> &Option<AnalyticsNodeType>
pub fn get_node_type(&self) -> &Option<AnalyticsNodeType>
Specifies whether the node is the end of a path (Exit) or not (Inner).
sourcepub fn build(self) -> AnalyticsIntentNodeSummary
pub fn build(self) -> AnalyticsIntentNodeSummary
Consumes the builder and constructs a AnalyticsIntentNodeSummary.
Trait Implementations§
source§impl Clone for AnalyticsIntentNodeSummaryBuilder
impl Clone for AnalyticsIntentNodeSummaryBuilder
source§fn clone(&self) -> AnalyticsIntentNodeSummaryBuilder
fn clone(&self) -> AnalyticsIntentNodeSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for AnalyticsIntentNodeSummaryBuilder
impl Default for AnalyticsIntentNodeSummaryBuilder
source§fn default() -> AnalyticsIntentNodeSummaryBuilder
fn default() -> AnalyticsIntentNodeSummaryBuilder
source§impl PartialEq for AnalyticsIntentNodeSummaryBuilder
impl PartialEq for AnalyticsIntentNodeSummaryBuilder
source§fn eq(&self, other: &AnalyticsIntentNodeSummaryBuilder) -> bool
fn eq(&self, other: &AnalyticsIntentNodeSummaryBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AnalyticsIntentNodeSummaryBuilder
Auto Trait Implementations§
impl Freeze for AnalyticsIntentNodeSummaryBuilder
impl RefUnwindSafe for AnalyticsIntentNodeSummaryBuilder
impl Send for AnalyticsIntentNodeSummaryBuilder
impl Sync for AnalyticsIntentNodeSummaryBuilder
impl Unpin for AnalyticsIntentNodeSummaryBuilder
impl UnwindSafe for AnalyticsIntentNodeSummaryBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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