Struct aws_sdk_support::operation::resolve_case::ResolveCaseOutput   
source · #[non_exhaustive]pub struct ResolveCaseOutput {
    pub initial_case_status: Option<String>,
    pub final_case_status: Option<String>,
    /* private fields */
}Expand description
The status of the case returned by the ResolveCase operation.
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.initial_case_status: Option<String>The status of the case when the ResolveCase request was sent.
final_case_status: Option<String>The status of the case after the ResolveCase request was processed.
Implementations§
source§impl ResolveCaseOutput
 
impl ResolveCaseOutput
sourcepub fn initial_case_status(&self) -> Option<&str>
 
pub fn initial_case_status(&self) -> Option<&str>
The status of the case when the ResolveCase request was sent.
sourcepub fn final_case_status(&self) -> Option<&str>
 
pub fn final_case_status(&self) -> Option<&str>
The status of the case after the ResolveCase request was processed.
source§impl ResolveCaseOutput
 
impl ResolveCaseOutput
sourcepub fn builder() -> ResolveCaseOutputBuilder
 
pub fn builder() -> ResolveCaseOutputBuilder
Creates a new builder-style object to manufacture ResolveCaseOutput.
Trait Implementations§
source§impl Clone for ResolveCaseOutput
 
impl Clone for ResolveCaseOutput
source§fn clone(&self) -> ResolveCaseOutput
 
fn clone(&self) -> ResolveCaseOutput
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 ResolveCaseOutput
 
impl Debug for ResolveCaseOutput
source§impl PartialEq for ResolveCaseOutput
 
impl PartialEq for ResolveCaseOutput
source§fn eq(&self, other: &ResolveCaseOutput) -> bool
 
fn eq(&self, other: &ResolveCaseOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for ResolveCaseOutput
 
impl RequestId for ResolveCaseOutput
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 ResolveCaseOutput
Auto Trait Implementations§
impl RefUnwindSafe for ResolveCaseOutput
impl Send for ResolveCaseOutput
impl Sync for ResolveCaseOutput
impl Unpin for ResolveCaseOutput
impl UnwindSafe for ResolveCaseOutput
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> 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>
Creates a shared type from an unshared type.