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> Freeze for PersistentBuilder<R>where
R: Freeze,
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
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>
Converts
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
, which can then be
downcast
into Box<dyn 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>
Converts
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
, which 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)
Converts
&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)
Converts
&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> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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>
Converts
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>
Converts
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