pub struct UnknownComponentWriter<'a> { /* private fields */ }
Expand description
Provides the ability to append new components to the entities in an archetype.
Implementations§
Source§impl<'a> UnknownComponentWriter<'a>
impl<'a> UnknownComponentWriter<'a>
Sourcepub unsafe fn extend_memcopy_raw(&mut self, ptr: *const u8, len: usize)
pub unsafe fn extend_memcopy_raw(&mut self, ptr: *const u8, len: usize)
Writes the given components into the component storage.
§Safety
ptr
must point to a valid array of the correct component type of length at least as
long as len
.
The data in this array will be memcopied into the world’s internal storage.
If the component type is not Copy
, then the caller must ensure that the memory
copied is not accessed until it is re-initialized. It is recommended to immediately
std::mem::forget
the source after calling extend_memcopy
.
Sourcepub fn ensure_capacity(&mut self, space: usize)
pub fn ensure_capacity(&mut self, space: usize)
Ensures that the given spare capacity is available in the target storage location.
Calling this function before calling extend_memcopy
is not required, but may
avoid additional vector resizes.
Sourcepub fn move_archetype_from(
&mut self,
src_archetype: ArchetypeIndex,
src: &mut (dyn UnknownComponentStorage + 'static),
)
pub fn move_archetype_from( &mut self, src_archetype: ArchetypeIndex, src: &mut (dyn UnknownComponentStorage + 'static), )
Moves all of the components from the given storage location into this writer’s storage.
Sourcepub fn move_component_from(
&mut self,
src_archetype: ArchetypeIndex,
src_component: ComponentIndex,
src: &mut (dyn UnknownComponentStorage + 'static),
)
pub fn move_component_from( &mut self, src_archetype: ArchetypeIndex, src_component: ComponentIndex, src: &mut (dyn UnknownComponentStorage + 'static), )
Moves a single component from the given storage location into this writer’s storage.
Auto Trait Implementations§
impl<'a> Freeze for UnknownComponentWriter<'a>
impl<'a> !RefUnwindSafe for UnknownComponentWriter<'a>
impl<'a> Send for UnknownComponentWriter<'a>
impl<'a> Sync for UnknownComponentWriter<'a>
impl<'a> Unpin for UnknownComponentWriter<'a>
impl<'a> !UnwindSafe for UnknownComponentWriter<'a>
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
Source§impl<T> Component for T
impl<T> Component for T
Source§type Storage = PackedStorage<T>
type Storage = PackedStorage<T>
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>
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>
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)
&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)
&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>
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>
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