pub struct AwsCloudMapInstanceAttribute {
pub key: String,
pub value: String,
}
Expand description
An object that represents the AWS Cloud Map attribute information for your virtual node.
Fields§
§key: String
The name of an AWS Cloud Map service instance attribute key. Any AWS Cloud Map service instance that contains the specified key and value is returned.
value: String
The value of an AWS Cloud Map service instance attribute key. Any AWS Cloud Map service instance that contains the specified key and value is returned.
Trait Implementations§
Source§impl Clone for AwsCloudMapInstanceAttribute
impl Clone for AwsCloudMapInstanceAttribute
Source§fn clone(&self) -> AwsCloudMapInstanceAttribute
fn clone(&self) -> AwsCloudMapInstanceAttribute
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 AwsCloudMapInstanceAttribute
impl Debug for AwsCloudMapInstanceAttribute
Source§impl Default for AwsCloudMapInstanceAttribute
impl Default for AwsCloudMapInstanceAttribute
Source§fn default() -> AwsCloudMapInstanceAttribute
fn default() -> AwsCloudMapInstanceAttribute
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsCloudMapInstanceAttribute
impl<'de> Deserialize<'de> for AwsCloudMapInstanceAttribute
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AwsCloudMapInstanceAttribute
impl PartialEq for AwsCloudMapInstanceAttribute
Source§fn eq(&self, other: &AwsCloudMapInstanceAttribute) -> bool
fn eq(&self, other: &AwsCloudMapInstanceAttribute) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AwsCloudMapInstanceAttribute
Auto Trait Implementations§
impl Freeze for AwsCloudMapInstanceAttribute
impl RefUnwindSafe for AwsCloudMapInstanceAttribute
impl Send for AwsCloudMapInstanceAttribute
impl Sync for AwsCloudMapInstanceAttribute
impl Unpin for AwsCloudMapInstanceAttribute
impl UnwindSafe for AwsCloudMapInstanceAttribute
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