#[non_exhaustive]pub struct EntityPropertyReference { /* private fields */ }Expand description
An object that uniquely identifies an entity property.
Implementations§
source§impl EntityPropertyReference
impl EntityPropertyReference
sourcepub fn component_name(&self) -> Option<&str>
pub fn component_name(&self) -> Option<&str>
The name of the component.
sourcepub fn external_id_property(&self) -> Option<&HashMap<String, String>>
pub fn external_id_property(&self) -> Option<&HashMap<String, String>>
A mapping of external IDs to property names. External IDs uniquely identify properties from external data stores.
sourcepub fn property_name(&self) -> Option<&str>
pub fn property_name(&self) -> Option<&str>
The name of the property.
source§impl EntityPropertyReference
impl EntityPropertyReference
sourcepub fn builder() -> EntityPropertyReferenceBuilder
pub fn builder() -> EntityPropertyReferenceBuilder
Creates a new builder-style object to manufacture EntityPropertyReference.
Trait Implementations§
source§impl Clone for EntityPropertyReference
impl Clone for EntityPropertyReference
source§fn clone(&self) -> EntityPropertyReference
fn clone(&self) -> EntityPropertyReference
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 EntityPropertyReference
impl Debug for EntityPropertyReference
source§impl PartialEq<EntityPropertyReference> for EntityPropertyReference
impl PartialEq<EntityPropertyReference> for EntityPropertyReference
source§fn eq(&self, other: &EntityPropertyReference) -> bool
fn eq(&self, other: &EntityPropertyReference) -> bool
This method tests for
self and other values to be equal, and is used
by ==.