pub struct EntityRegistryEntry {
pub entity_path: &'static str,
pub store_path: &'static str,
}Expand description
EntityRegistryEntry
Minimal entity metadata for save-time reference existence checks. Captures the entity path and its data store path.
Fields§
§entity_path: &'static str§store_path: &'static strTrait Implementations§
Source§impl Clone for EntityRegistryEntry
impl Clone for EntityRegistryEntry
Source§fn clone(&self) -> EntityRegistryEntry
fn clone(&self) -> EntityRegistryEntry
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 EntityRegistryEntry
impl Debug for EntityRegistryEntry
impl Copy for EntityRegistryEntry
Auto Trait Implementations§
impl Freeze for EntityRegistryEntry
impl RefUnwindSafe for EntityRegistryEntry
impl Send for EntityRegistryEntry
impl Sync for EntityRegistryEntry
impl Unpin for EntityRegistryEntry
impl UnwindSafe for EntityRegistryEntry
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