pub struct EntityMap {
pub entity: EntityRef,
pub attributes: Vec<(EntityId, Vec<Value>)>,
}Expand description
A map-form entity; each (attribute, values) entry expands to additions.
Fields§
§entity: EntityRefEntity position.
attributes: Vec<(EntityId, Vec<Value>)>Attribute values.
Trait Implementations§
impl Eq for EntityMap
impl StructuralPartialEq for EntityMap
Auto Trait Implementations§
impl Freeze for EntityMap
impl RefUnwindSafe for EntityMap
impl Send for EntityMap
impl Sync for EntityMap
impl Unpin for EntityMap
impl UnsafeUnpin for EntityMap
impl UnwindSafe for EntityMap
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