pub struct EntityFacts {
pub entity: Entity,
pub recent_episodes: Vec<Episode>,
pub related_entities: Vec<Entity>,
}Expand description
Facts about an entity
Fields§
§entity: Entity§recent_episodes: Vec<Episode>Trait Implementations§
Source§impl Clone for EntityFacts
impl Clone for EntityFacts
Source§fn clone(&self) -> EntityFacts
fn clone(&self) -> EntityFacts
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 moreAuto Trait Implementations§
impl Freeze for EntityFacts
impl RefUnwindSafe for EntityFacts
impl Send for EntityFacts
impl Sync for EntityFacts
impl Unpin for EntityFacts
impl UnsafeUnpin for EntityFacts
impl UnwindSafe for EntityFacts
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