Struct bones_lib::ecs::resources::UntypedResource

pub struct UntypedResource { /* private fields */ }
Expand description

An untyped resource that may be inserted into UntypedResources.

This is fundamentally a Arc<AtomicCell<Option<SchemaBox>>> and thus represents a cell that may or may not contain a resource of it’s schema.

Implementations§

§

impl UntypedResource

pub fn empty(schema: &'static Schema) -> UntypedResource

Initialize a new, empty UntypedResource.

pub fn new(resource: SchemaBox) -> UntypedResource

Creates a new UntypedResource storing the given data.

pub fn from_default(schema: &'static Schema) -> UntypedResource

Create a new UntypedResource for the given schema, initially populated with the default value for the schema.

pub fn clone_data(&self) -> Option<SchemaBox>

Clone the inner data, creating a new copy instead of returning another handle the the same data, as the normal clone() implementation does.

pub fn insert( &self, data: SchemaBox, ) -> Result<Option<SchemaBox>, SchemaMismatchError>

Insert resource data into the cell, returning the previous data.

§Errors

Errors if the schema of the data does not match that of this cell.

pub fn remove(&self) -> Option<SchemaBox>

Remove the resource data, returning what was stored in it.

pub fn borrow(&self) -> Ref<'_, Option<SchemaBox>>

Borrow the resource.

pub fn borrow_mut(&self) -> RefMut<'_, Option<SchemaBox>>

Mutably borrow the resource.

pub fn schema(&self) -> &'static Schema

Get the schema of the resource.

Trait Implementations§

§

impl Debug for UntypedResource

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. 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> 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.

§

impl<T> RawDrop for T

§

unsafe fn raw_drop(ptr: *mut c_void)

Write the default value of the type to the pointer. Read more
§

fn raw_drop_cb() -> Unsafe<&'static (dyn Fn(*mut c_void) + Send + Sync)>

Get a callback suitable for [SchemaData].
source§

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

§

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>,

§

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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V