Struct aws_sdk_appmesh::types::JsonFormatRef
source · #[non_exhaustive]pub struct JsonFormatRef {
pub key: Option<String>,
pub value: Option<String>,
}
Expand description
An object that represents the key value pairs for the JSON.
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.key: Option<String>
The specified key for the JSON.
value: Option<String>
The specified value for the JSON.
Implementations§
source§impl JsonFormatRef
impl JsonFormatRef
source§impl JsonFormatRef
impl JsonFormatRef
sourcepub fn builder() -> JsonFormatRefBuilder
pub fn builder() -> JsonFormatRefBuilder
Creates a new builder-style object to manufacture JsonFormatRef
.
Trait Implementations§
source§impl Clone for JsonFormatRef
impl Clone for JsonFormatRef
source§fn clone(&self) -> JsonFormatRef
fn clone(&self) -> JsonFormatRef
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 JsonFormatRef
impl Debug for JsonFormatRef
source§impl PartialEq<JsonFormatRef> for JsonFormatRef
impl PartialEq<JsonFormatRef> for JsonFormatRef
source§fn eq(&self, other: &JsonFormatRef) -> bool
fn eq(&self, other: &JsonFormatRef) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for JsonFormatRef
Auto Trait Implementations§
impl RefUnwindSafe for JsonFormatRef
impl Send for JsonFormatRef
impl Sync for JsonFormatRef
impl Unpin for JsonFormatRef
impl UnwindSafe for JsonFormatRef
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