pub struct AttributeKey {
pub facet_name: String,
pub name: String,
pub schema_arn: String,
}Expand description
A unique identifier for an attribute.
Fields§
§facet_name: StringThe name of the facet that the attribute exists within.
name: StringThe name of the attribute.
schema_arn: StringThe Amazon Resource Name (ARN) of the schema that contains the facet and attribute.
Trait Implementations§
Source§impl Clone for AttributeKey
impl Clone for AttributeKey
Source§fn clone(&self) -> AttributeKey
fn clone(&self) -> AttributeKey
Returns a duplicate 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 AttributeKey
impl Debug for AttributeKey
Source§impl Default for AttributeKey
impl Default for AttributeKey
Source§fn default() -> AttributeKey
fn default() -> AttributeKey
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AttributeKey
impl<'de> Deserialize<'de> for AttributeKey
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 AttributeKey
impl PartialEq for AttributeKey
Source§impl Serialize for AttributeKey
impl Serialize for AttributeKey
impl StructuralPartialEq for AttributeKey
Auto Trait Implementations§
impl Freeze for AttributeKey
impl RefUnwindSafe for AttributeKey
impl Send for AttributeKey
impl Sync for AttributeKey
impl Unpin for AttributeKey
impl UnwindSafe for AttributeKey
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