pub struct CollectedData {
pub entities: Vec<EntityDef>,
pub queries: Vec<Query>,
pub systems: Vec<SystemDef>,
}
Fields§
§entities: Vec<EntityDef>
§queries: Vec<Query>
§systems: Vec<SystemDef>
Implementations§
Source§impl CollectedData
impl CollectedData
pub fn retain_unique_queries(&mut self)
Trait Implementations§
Source§impl Debug for CollectedData
impl Debug for CollectedData
Source§impl Default for CollectedData
impl Default for CollectedData
Source§fn default() -> CollectedData
fn default() -> CollectedData
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CollectedData
impl RefUnwindSafe for CollectedData
impl Send for CollectedData
impl Sync for CollectedData
impl Unpin for CollectedData
impl UnwindSafe for CollectedData
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more