Struct aws_sdk_connectcases::operation::get_case::GetCaseInput
source · #[non_exhaustive]pub struct GetCaseInput {
pub case_id: Option<String>,
pub domain_id: Option<String>,
pub fields: Option<Vec<FieldIdentifier>>,
pub next_token: Option<String>,
}
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.case_id: Option<String>
A unique identifier of the case.
domain_id: Option<String>
The unique identifier of the Cases domain.
fields: Option<Vec<FieldIdentifier>>
A list of unique field identifiers.
next_token: Option<String>
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
Implementations§
source§impl GetCaseInput
impl GetCaseInput
sourcepub fn fields(&self) -> Option<&[FieldIdentifier]>
pub fn fields(&self) -> Option<&[FieldIdentifier]>
A list of unique field identifiers.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
source§impl GetCaseInput
impl GetCaseInput
sourcepub fn builder() -> GetCaseInputBuilder
pub fn builder() -> GetCaseInputBuilder
Creates a new builder-style object to manufacture GetCaseInput
.
Trait Implementations§
source§impl Clone for GetCaseInput
impl Clone for GetCaseInput
source§fn clone(&self) -> GetCaseInput
fn clone(&self) -> GetCaseInput
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 GetCaseInput
impl Debug for GetCaseInput
source§impl PartialEq for GetCaseInput
impl PartialEq for GetCaseInput
source§fn eq(&self, other: &GetCaseInput) -> bool
fn eq(&self, other: &GetCaseInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetCaseInput
Auto Trait Implementations§
impl RefUnwindSafe for GetCaseInput
impl Send for GetCaseInput
impl Sync for GetCaseInput
impl Unpin for GetCaseInput
impl UnwindSafe for GetCaseInput
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