Struct bevy_persistent::builder::PersistentBuilder  
source · pub struct PersistentBuilder<R: Resource + Serialize + DeserializeOwned> { /* private fields */ }Expand description
A builder for a persistent resource.
Implementations§
source§impl<R: Resource + Serialize + DeserializeOwned> PersistentBuilder<R>
 
impl<R: Resource + Serialize + DeserializeOwned> PersistentBuilder<R>
sourcepub fn name(self, name: impl ToString) -> PersistentBuilder<R>
 
pub fn name(self, name: impl ToString) -> PersistentBuilder<R>
Sets the name of the resource.
sourcepub fn format(self, format: StorageFormat) -> PersistentBuilder<R>
 
pub fn format(self, format: StorageFormat) -> PersistentBuilder<R>
Sets the storage format of the resource.
sourcepub fn path(self, path: impl Into<PathBuf>) -> PersistentBuilder<R>
 
pub fn path(self, path: impl Into<PathBuf>) -> PersistentBuilder<R>
Sets the path of the resource.
sourcepub fn loaded(self, loaded: bool) -> PersistentBuilder<R>
 
pub fn loaded(self, loaded: bool) -> PersistentBuilder<R>
Sets the initial loaded status of the resource.
sourcepub fn unloaded(self, unloaded: bool) -> PersistentBuilder<R>
 
pub fn unloaded(self, unloaded: bool) -> PersistentBuilder<R>
Sets the initial unloaded status of the resource.
sourcepub fn default(self, resource: R) -> PersistentBuilder<R>
 
pub fn default(self, resource: R) -> PersistentBuilder<R>
Sets the default value of the resource.
sourcepub fn revertible(self, revertible: bool) -> PersistentBuilder<R>
 
pub fn revertible(self, revertible: bool) -> PersistentBuilder<R>
Sets whether the the resource can be reverted to default.
sourcepub fn revert_to_default_on_deserialization_errors(
    self,
    revert_to_default_on_deserialization_errors: bool
) -> PersistentBuilder<R>
 
pub fn revert_to_default_on_deserialization_errors( self, revert_to_default_on_deserialization_errors: bool ) -> PersistentBuilder<R>
Sets whether the the resource should be reverted to default on deserialization errors.
source§impl<R: Resource + Serialize + DeserializeOwned> PersistentBuilder<R>
 
impl<R: Resource + Serialize + DeserializeOwned> PersistentBuilder<R>
sourcepub fn build(self) -> Result<Persistent<R>, PersistenceError>
 
pub fn build(self) -> Result<Persistent<R>, PersistenceError>
Auto Trait Implementations§
impl<R> RefUnwindSafe for PersistentBuilder<R>where R: RefUnwindSafe,
impl<R> Send for PersistentBuilder<R>
impl<R> Sync for PersistentBuilder<R>
impl<R> Unpin for PersistentBuilder<R>where R: Unpin,
impl<R> UnwindSafe for PersistentBuilder<R>where R: UnwindSafe,
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
Mutably borrows from an owned value. Read more
§impl<T> Downcast for Twhere
    T: Any,
 
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
 
fn into_any(self: Box<T>) -> Box<dyn Any>
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>
 
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
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.