Struct bevy_save::SaveableRegistry
source · pub struct SaveableRegistry { /* private fields */ }
Expand description
The global registry of types that should be tracked by bevy_save
.
Only types that are registered in here and [AppTypeRegistry
] are included in save/load and rollback.
Implementations§
source§impl SaveableRegistry
impl SaveableRegistry
sourcepub fn register<T: GetTypeRegistration>(&mut self)
pub fn register<T: GetTypeRegistration>(&mut self)
Register a type to be included in saves and rollback.
sourcepub fn ignore_rollback<T: GetTypeRegistration>(&mut self)
pub fn ignore_rollback<T: GetTypeRegistration>(&mut self)
Exclude a type from rollback.
The type is still included in saves.
Panics
- If called on a type that has not been registered
sourcepub fn allow_rollback<T: GetTypeRegistration>(&mut self)
pub fn allow_rollback<T: GetTypeRegistration>(&mut self)
sourcepub fn contains(&self, type_name: &str) -> bool
pub fn contains(&self, type_name: &str) -> bool
Returns whether or not a type name is registered in the SaveableRegistry
.
sourcepub fn can_rollback(&self, type_name: &str) -> bool
pub fn can_rollback(&self, type_name: &str) -> bool
Returns whether or not a type name is included in rollback.
Panics
- If called on a type that has not been registered
Trait Implementations§
source§impl Default for SaveableRegistry
impl Default for SaveableRegistry
source§fn default() -> SaveableRegistry
fn default() -> SaveableRegistry
Returns the “default value” for a type. Read more
impl Resource for SaveableRegistrywhere Self: Send + Sync + 'static,
Auto Trait Implementations§
impl RefUnwindSafe for SaveableRegistry
impl Send for SaveableRegistry
impl Sync for SaveableRegistry
impl Unpin for SaveableRegistry
impl UnwindSafe for SaveableRegistry
Blanket Implementations§
§impl<T, U> AsBindGroupShaderType<U> for Twhere
U: ShaderType,
&'a T: for<'a> Into<U>,
impl<T, U> AsBindGroupShaderType<U> for Twhere U: ShaderType, &'a T: for<'a> Into<U>,
§fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
Return the
T
[ShaderType
] for self
. When used in [AsBindGroup
]
derives, it is safe to assume that all images in self
exist.§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
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
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§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.§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.§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere T: Default,
§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Creates
Self
using data from the given [World]