#[non_exhaustive]pub struct CallAnalyticsSkippedFeature {
pub feature: Option<CallAnalyticsFeature>,
pub reason_code: Option<CallAnalyticsSkippedReasonCode>,
pub message: Option<String>,
}
Expand description
Represents a skipped analytics feature during the analysis of a call analytics job.
The Feature
field indicates the type of analytics feature that was skipped.
The Message
field contains additional information or a message explaining why the analytics feature was skipped.
The ReasonCode
field provides a code indicating the reason why the analytics feature was skipped.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.feature: Option<CallAnalyticsFeature>
Indicates the type of analytics feature that was skipped during the analysis of a call analytics job.
reason_code: Option<CallAnalyticsSkippedReasonCode>
Provides a code indicating the reason why a specific analytics feature was skipped during the analysis of a call analytics job.
message: Option<String>
Contains additional information or a message explaining why a specific analytics feature was skipped during the analysis of a call analytics job.
Implementations§
source§impl CallAnalyticsSkippedFeature
impl CallAnalyticsSkippedFeature
sourcepub fn feature(&self) -> Option<&CallAnalyticsFeature>
pub fn feature(&self) -> Option<&CallAnalyticsFeature>
Indicates the type of analytics feature that was skipped during the analysis of a call analytics job.
sourcepub fn reason_code(&self) -> Option<&CallAnalyticsSkippedReasonCode>
pub fn reason_code(&self) -> Option<&CallAnalyticsSkippedReasonCode>
Provides a code indicating the reason why a specific analytics feature was skipped during the analysis of a call analytics job.
source§impl CallAnalyticsSkippedFeature
impl CallAnalyticsSkippedFeature
sourcepub fn builder() -> CallAnalyticsSkippedFeatureBuilder
pub fn builder() -> CallAnalyticsSkippedFeatureBuilder
Creates a new builder-style object to manufacture CallAnalyticsSkippedFeature
.
Trait Implementations§
source§impl Clone for CallAnalyticsSkippedFeature
impl Clone for CallAnalyticsSkippedFeature
source§fn clone(&self) -> CallAnalyticsSkippedFeature
fn clone(&self) -> CallAnalyticsSkippedFeature
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CallAnalyticsSkippedFeature
impl Debug for CallAnalyticsSkippedFeature
impl StructuralPartialEq for CallAnalyticsSkippedFeature
Auto Trait Implementations§
impl Freeze for CallAnalyticsSkippedFeature
impl RefUnwindSafe for CallAnalyticsSkippedFeature
impl Send for CallAnalyticsSkippedFeature
impl Sync for CallAnalyticsSkippedFeature
impl Unpin for CallAnalyticsSkippedFeature
impl UnwindSafe for CallAnalyticsSkippedFeature
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