Struct aws_sdk_connectcases::types::FieldValue  
source · #[non_exhaustive]pub struct FieldValue {
    pub id: Option<String>,
    pub value: Option<FieldValueUnion>,
}Expand description
Object for case field values.
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.id: Option<String>Unique identifier of a field.
value: Option<FieldValueUnion>Union of potential field value types.
Implementations§
source§impl FieldValue
 
impl FieldValue
source§impl FieldValue
 
impl FieldValue
sourcepub fn builder() -> FieldValueBuilder
 
pub fn builder() -> FieldValueBuilder
Creates a new builder-style object to manufacture FieldValue.
Trait Implementations§
source§impl Clone for FieldValue
 
impl Clone for FieldValue
source§fn clone(&self) -> FieldValue
 
fn clone(&self) -> FieldValue
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 FieldValue
 
impl Debug for FieldValue
source§impl PartialEq<FieldValue> for FieldValue
 
impl PartialEq<FieldValue> for FieldValue
source§fn eq(&self, other: &FieldValue) -> bool
 
fn eq(&self, other: &FieldValue) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for FieldValue
Auto Trait Implementations§
impl RefUnwindSafe for FieldValue
impl Send for FieldValue
impl Sync for FieldValue
impl Unpin for FieldValue
impl UnwindSafe for FieldValue
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