Struct Resources

Source
pub struct Resources { /* private fields */ }

Implementations§

Source§

impl Resources

A Resource container, which provides methods to insert, access and manage the contained resources.

Many methods take &self which works because everything is stored with interior mutability. In case you violate the borrowing rules of Rust (multiple reads xor one write), you will get a panic.

§Resource Ids

Resources are identified by ResourceIds, which consist of a TypeId.

Source

pub fn entry<R>(&mut self) -> Entry<'_, R>
where R: Resource,

Returns an entry for the resource with type R.

Source

pub fn insert<R>(&mut self, r: R)
where R: Resource,

Inserts a resource into this container. If the resource existed before, it will be overwritten.

§Examples

Every type satisfying Any + Send + Sync automatically implements Resource, thus can be added:

struct MyRes(i32);

When you have a resource, simply insert it like this:

use async_ecs::World;

let mut world = World::default();
world.insert(MyRes(5));
Source

pub fn remove<R>(&mut self) -> Option<R>
where R: Resource,

Removes a resource of type R from this container and returns its ownership to the caller. In case there is no such resource in this, container, None will be returned.

Use this method with caution; other functions and systems might assume this resource still exists. Thus, only use this if you’re sure no system will try to access this resource after you removed it (or else you will get a panic).

Source

pub fn contains<R>(&self) -> bool
where R: Resource,

Returns true if the specified resource type R exists in self.

Source

pub fn borrow<R>(&self) -> Ref<'_, R>
where R: Resource,

Fetches the resource with the specified type T or panics if it doesn’t exist.

§Panics

Panics if the resource doesn’t exist. Panics if the resource is being accessed mutably.

Source

pub fn try_borrow<R>(&self) -> Option<Ref<'_, R>>
where R: Resource,

Like fetch, but returns an Option instead of inserting a default value in case the resource does not exist.

Source

pub fn borrow_mut<R>(&self) -> RefMut<'_, R>
where R: Resource,

Fetches the resource with the specified type T mutably.

Please see fetch for details.

§Panics

Panics if the resource doesn’t exist. Panics if the resource is already being accessed.

Source

pub fn try_borrow_mut<R>(&self) -> Option<RefMut<'_, R>>
where R: Resource,

Like fetch_mut, but returns an Option instead of inserting a default value in case the resource does not exist.

Source

pub fn get_mut<R: Resource>(&mut self) -> Option<&mut R>

Retrieves a resource without fetching, which is cheaper, but only available with &mut self.

Source

pub fn get_resource_mut(&mut self, id: ResourceId) -> Option<&mut dyn Resource>

Retrieves a resource without fetching, which is cheaper, but only available with &mut self.

Source

pub fn get_raw(&self, id: &ResourceId) -> Option<&Cell<Box<dyn Resource>>>

Get raw access to the underlying cell.

Trait Implementations§

Source§

impl Default for Resources

Source§

fn default() -> Resources

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Any for T
where T: Any,

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> TryDefault for T
where T: Default,

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> Resource for T
where T: Any + Send + Sync,