Enum bevy_persistent::storage::Storage
source · pub enum Storage {
Filesystem {
path: PathBuf,
},
}Expand description
A storage.
Variants§
Implementations§
source§impl Storage
impl Storage
sourcepub fn initialize(&self) -> Result<(), StorageError>
pub fn initialize(&self) -> Result<(), StorageError>
Initializes the storage.
sourcepub fn read<R: Resource + Serialize + DeserializeOwned>(
&self,
name: &str,
format: StorageFormat
) -> Result<R, StorageError>
pub fn read<R: Resource + Serialize + DeserializeOwned>( &self, name: &str, format: StorageFormat ) -> Result<R, StorageError>
Reads a resource from the storage.
sourcepub fn write<R: Resource + Serialize + DeserializeOwned>(
&self,
name: &str,
format: StorageFormat,
resource: &R
) -> Result<(), StorageError>
pub fn write<R: Resource + Serialize + DeserializeOwned>( &self, name: &str, format: StorageFormat, resource: &R ) -> Result<(), StorageError>
Writes a resource to the storage.
Trait Implementations§
source§impl PartialEq<Storage> for Storage
impl PartialEq<Storage> for Storage
impl Eq for Storage
impl StructuralEq for Storage
impl StructuralPartialEq for Storage
Auto Trait Implementations§
impl RefUnwindSafe for Storage
impl Send for Storage
impl Sync for Storage
impl Unpin for Storage
impl UnwindSafe for Storage
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.source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.