pub struct EntityDetail {
pub entity: Entity,
pub observations: Vec<Observation>,
pub relations: Vec<RelationWithEntity>,
}Expand description
Full entity detail including observations and relations.
Fields§
§entity: Entity§observations: Vec<Observation>§relations: Vec<RelationWithEntity>Trait Implementations§
Source§impl Clone for EntityDetail
impl Clone for EntityDetail
Source§fn clone(&self) -> EntityDetail
fn clone(&self) -> EntityDetail
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 EntityDetail
impl Debug for EntityDetail
Source§impl<'de> Deserialize<'de> for EntityDetail
impl<'de> Deserialize<'de> for EntityDetail
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 EntityDetail
impl RefUnwindSafe for EntityDetail
impl Send for EntityDetail
impl Sync for EntityDetail
impl Unpin for EntityDetail
impl UnsafeUnpin for EntityDetail
impl UnwindSafe for EntityDetail
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