pub struct World { /* private fields */ }Expand description
Contains data indexed by type. World allows to dynamically enforce the rust rules of borrowing and ownership at runtime:
- The same type cannot be borrowed immutably and mutably at the same time.
- The same type cannot be borrowed mutably more than once at the same time.
Implementations§
Source§impl World
impl World
Sourcepub fn initialize<T>(&mut self)
pub fn initialize<T>(&mut self)
Initializes a resource to its default value. This is the only way to “insert” a resource.
It is suggested to use a macro to collect all the resources and initialize all of them.
Sourcepub fn get<T>(&self) -> Result<AtomicRef<'_, T>, EcsError>
pub fn get<T>(&self) -> Result<AtomicRef<'_, T>, EcsError>
Get an immutable reference to a resource by type. Will return an error if the type is:
- Non initialized
- Already borrowed mutably
Sourcepub fn get_mut<T>(&self) -> Result<AtomicRefMut<'_, T>, EcsError>
pub fn get_mut<T>(&self) -> Result<AtomicRefMut<'_, T>, EcsError>
Get a mutable reference to a resource by type. Will return an error if the type is:
- Non initialized
- Already borrowed immutably
- Already borrowed mutably
Sourcepub fn get_mut_or_default<T>(&mut self) -> AtomicRefMut<'_, T>
pub fn get_mut_or_default<T>(&mut self) -> AtomicRefMut<'_, T>
Get a mutable reference to a resource by type, default-initializing it if not already initialized.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for World
impl !RefUnwindSafe for World
impl Send for World
impl Sync for World
impl Unpin for World
impl !UnwindSafe for World
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> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
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