pub struct DeploymentStore {
pub soul: Option<DeploymentSoul>,
pub incarnation_memory: Option<IncarnationMemory>,
}Expand description
Store for deployment consciousness domain.
Fields§
§soul: Option<DeploymentSoul>§incarnation_memory: Option<IncarnationMemory>Implementations§
Trait Implementations§
Source§impl Clone for DeploymentStore
impl Clone for DeploymentStore
Source§fn clone(&self) -> DeploymentStore
fn clone(&self) -> DeploymentStore
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DeploymentStore
impl Debug for DeploymentStore
Source§impl Default for DeploymentStore
impl Default for DeploymentStore
Source§fn default() -> DeploymentStore
fn default() -> DeploymentStore
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeploymentStore
impl<'de> Deserialize<'de> for DeploymentStore
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DeploymentStore
impl RefUnwindSafe for DeploymentStore
impl Send for DeploymentStore
impl Sync for DeploymentStore
impl Unpin for DeploymentStore
impl UnsafeUnpin for DeploymentStore
impl UnwindSafe for DeploymentStore
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