pub struct EntityEntry {
pub entry_id: u64,
pub type_id: TypeId,
pub type_name: String,
pub state: EntityState,
pub modified_properties: Vec<String>,
}Expand description
A public read-only view of a tracked entry.
Fields§
§entry_id: u64§type_id: TypeId§type_name: String§state: EntityState§modified_properties: Vec<String>Property names that have been modified (populated after detect_changes).
Trait Implementations§
Source§impl Clone for EntityEntry
impl Clone for EntityEntry
Source§fn clone(&self) -> EntityEntry
fn clone(&self) -> EntityEntry
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 EntityEntry
impl RefUnwindSafe for EntityEntry
impl Send for EntityEntry
impl Sync for EntityEntry
impl Unpin for EntityEntry
impl UnsafeUnpin for EntityEntry
impl UnwindSafe for EntityEntry
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