Struct Resources

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

A resource container, which provides methods to access to the contained resources.

§Resource Ids

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

Implementations§

Source§

impl Resources

Source

pub fn new() -> Resources

Creates a new, empty resource container.

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 + Debug + Send + Sync automatically implements Resource, thus can be added:

#[derive(Debug)]
struct MyRes(i32);

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

use shred::Resources;

let mut res = Resources::new();
res.insert(MyRes(5));
Source

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

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

Source

pub fn has_value_raw(&self, id: ResourceId) -> bool

Returns true if the specified resource type exists in self.

Source

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

Returns an entry for the resource with type R.

Source

pub fn fetch<T>(&self) -> Fetch<'_, T>
where T: 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_fetch<T>(&self) -> Option<Fetch<'_, T>>
where T: Resource,

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

Source

pub fn fetch_mut<T>(&self) -> FetchMut<'_, T>
where T: 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_fetch_mut<T>(&self) -> Option<FetchMut<'_, T>>
where T: Resource,

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

Source

pub fn try_fetch_internal( &self, id: TypeId, ) -> Option<&TrustCell<Box<dyn Resource>>>

Internal function for fetching resources, should only be used if you know what you’re doing.

Source

pub fn get_mut<T>(&mut self) -> Option<&mut T>
where T: Resource,

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

Source

pub fn get_mut_raw( &mut self, id: TypeId, ) -> Option<&mut (dyn Resource + 'static)>

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

Trait Implementations§

Source§

impl Borrow<Resources> for World

Source§

fn borrow(&self) -> &Resources

Immutably borrows from an owned value. Read more
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§

fn try_default() -> Result<T, String>

Tries to create the default.
Source§

fn unwrap_default() -> Self

Calls try_default and panics on an error case.
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> Erased for T

Source§

impl<T> Event for T
where T: Send + Sync + 'static,

Source§

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