pub struct DeploymentSoul {
pub incarnation_id: IncarnationId,
pub birth: BirthContext,
pub substrate: PhysicalSubstrate,
pub role: DeploymentRole,
pub nature: ExistentialNature,
pub lineage: DeploymentLineage,
pub vitals: SoulVitals,
}Expand description
The complete deployment soul — an agent’s existential identity.
Fields§
§incarnation_id: IncarnationId§birth: BirthContext§substrate: PhysicalSubstrate§role: DeploymentRole§nature: ExistentialNature§lineage: DeploymentLineage§vitals: SoulVitalsTrait Implementations§
Source§impl Clone for DeploymentSoul
impl Clone for DeploymentSoul
Source§fn clone(&self) -> DeploymentSoul
fn clone(&self) -> DeploymentSoul
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 DeploymentSoul
impl Debug for DeploymentSoul
Source§impl<'de> Deserialize<'de> for DeploymentSoul
impl<'de> Deserialize<'de> for DeploymentSoul
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 DeploymentSoul
impl RefUnwindSafe for DeploymentSoul
impl Send for DeploymentSoul
impl Sync for DeploymentSoul
impl Unpin for DeploymentSoul
impl UnsafeUnpin for DeploymentSoul
impl UnwindSafe for DeploymentSoul
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