#[non_exhaustive]pub struct GetCallAnalyticsJobOutput {
    pub call_analytics_job: Option<CallAnalyticsJob>,
    /* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.call_analytics_job: Option<CallAnalyticsJob>Provides detailed information about the specified Call Analytics job, including job status and, if applicable, failure reason.
Implementations§
source§impl GetCallAnalyticsJobOutput
 
impl GetCallAnalyticsJobOutput
sourcepub fn call_analytics_job(&self) -> Option<&CallAnalyticsJob>
 
pub fn call_analytics_job(&self) -> Option<&CallAnalyticsJob>
Provides detailed information about the specified Call Analytics job, including job status and, if applicable, failure reason.
source§impl GetCallAnalyticsJobOutput
 
impl GetCallAnalyticsJobOutput
sourcepub fn builder() -> GetCallAnalyticsJobOutputBuilder
 
pub fn builder() -> GetCallAnalyticsJobOutputBuilder
Creates a new builder-style object to manufacture GetCallAnalyticsJobOutput.
Trait Implementations§
source§impl Clone for GetCallAnalyticsJobOutput
 
impl Clone for GetCallAnalyticsJobOutput
source§fn clone(&self) -> GetCallAnalyticsJobOutput
 
fn clone(&self) -> GetCallAnalyticsJobOutput
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 Debug for GetCallAnalyticsJobOutput
 
impl Debug for GetCallAnalyticsJobOutput
source§impl PartialEq<GetCallAnalyticsJobOutput> for GetCallAnalyticsJobOutput
 
impl PartialEq<GetCallAnalyticsJobOutput> for GetCallAnalyticsJobOutput
source§fn eq(&self, other: &GetCallAnalyticsJobOutput) -> bool
 
fn eq(&self, other: &GetCallAnalyticsJobOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for GetCallAnalyticsJobOutput
 
impl RequestId for GetCallAnalyticsJobOutput
source§fn request_id(&self) -> Option<&str>
 
fn request_id(&self) -> Option<&str>
Returns the request ID, or 
None if the service could not be reached.impl StructuralPartialEq for GetCallAnalyticsJobOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetCallAnalyticsJobOutput
impl Send for GetCallAnalyticsJobOutput
impl Sync for GetCallAnalyticsJobOutput
impl Unpin for GetCallAnalyticsJobOutput
impl UnwindSafe for GetCallAnalyticsJobOutput
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