pub struct EntityReference {
pub id: Uuid,
pub logical_name: String,
pub name: Option<String>,
}Expand description
Reference to another Dataverse entity.
Fields§
§id: UuidPrimary ID for the referenced entity.
logical_name: StringLogical name for the referenced entity.
name: Option<String>Primary name for the referenced entity, when provided.
Trait Implementations§
Source§impl Clone for EntityReference
impl Clone for EntityReference
Source§fn clone(&self) -> EntityReference
fn clone(&self) -> EntityReference
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EntityReference
impl Debug for EntityReference
Source§impl<'de> Deserialize<'de> for EntityReference
impl<'de> Deserialize<'de> for EntityReference
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
Auto Trait Implementations§
impl Freeze for EntityReference
impl RefUnwindSafe for EntityReference
impl Send for EntityReference
impl Sync for EntityReference
impl Unpin for EntityReference
impl UnsafeUnpin for EntityReference
impl UnwindSafe for EntityReference
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