Struct aws_sdk_connectcases::types::GetFieldResponse
source · #[non_exhaustive]pub struct GetFieldResponse {
pub field_id: Option<String>,
pub name: Option<String>,
pub field_arn: Option<String>,
pub description: Option<String>,
pub type: Option<FieldType>,
pub namespace: Option<FieldNamespace>,
pub tags: Option<HashMap<String, Option<String>>>,
}
Expand description
Object to store detailed field information.
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.field_id: Option<String>
Unique identifier of the field.
name: Option<String>
Name of the field.
field_arn: Option<String>
The Amazon Resource Name (ARN) of the field.
description: Option<String>
Description of the field.
type: Option<FieldType>
Type of the field.
namespace: Option<FieldNamespace>
Namespace of the field.
A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.
Implementations§
source§impl GetFieldResponse
impl GetFieldResponse
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Description of the field.
sourcepub fn namespace(&self) -> Option<&FieldNamespace>
pub fn namespace(&self) -> Option<&FieldNamespace>
Namespace of the field.
A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.
source§impl GetFieldResponse
impl GetFieldResponse
sourcepub fn builder() -> GetFieldResponseBuilder
pub fn builder() -> GetFieldResponseBuilder
Creates a new builder-style object to manufacture GetFieldResponse
.
Trait Implementations§
source§impl Clone for GetFieldResponse
impl Clone for GetFieldResponse
source§fn clone(&self) -> GetFieldResponse
fn clone(&self) -> GetFieldResponse
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 GetFieldResponse
impl Debug for GetFieldResponse
source§impl PartialEq for GetFieldResponse
impl PartialEq for GetFieldResponse
source§fn eq(&self, other: &GetFieldResponse) -> bool
fn eq(&self, other: &GetFieldResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetFieldResponse
Auto Trait Implementations§
impl RefUnwindSafe for GetFieldResponse
impl Send for GetFieldResponse
impl Sync for GetFieldResponse
impl Unpin for GetFieldResponse
impl UnwindSafe for GetFieldResponse
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