pub struct DeltaMetadata {
pub change_count: u32,
pub entities_added: u32,
pub entities_removed: u32,
pub components_updated: u32,
}Fields§
§change_count: u32§entities_added: u32§entities_removed: u32§components_updated: u32Trait Implementations§
Source§impl Clone for DeltaMetadata
impl Clone for DeltaMetadata
Source§fn clone(&self) -> DeltaMetadata
fn clone(&self) -> DeltaMetadata
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 DeltaMetadata
impl Debug for DeltaMetadata
Source§impl<'de> Deserialize<'de> for DeltaMetadata
impl<'de> Deserialize<'de> for DeltaMetadata
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 DeltaMetadata
impl RefUnwindSafe for DeltaMetadata
impl Send for DeltaMetadata
impl Sync for DeltaMetadata
impl Unpin for DeltaMetadata
impl UnwindSafe for DeltaMetadata
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