pub struct ExistentialNature {
pub cardinality: Cardinality,
pub expendability: f64,
pub persistence: PersistenceModel,
pub statefulness: StatefulnessModel,
pub clonability: bool,
pub primacy: InstancePrimacy,
}Expand description
The agent’s existential nature.
Fields§
§cardinality: Cardinality§expendability: f64§persistence: PersistenceModel§statefulness: StatefulnessModel§clonability: bool§primacy: InstancePrimacyTrait Implementations§
Source§impl Clone for ExistentialNature
impl Clone for ExistentialNature
Source§fn clone(&self) -> ExistentialNature
fn clone(&self) -> ExistentialNature
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 ExistentialNature
impl Debug for ExistentialNature
Source§impl<'de> Deserialize<'de> for ExistentialNature
impl<'de> Deserialize<'de> for ExistentialNature
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 ExistentialNature
impl RefUnwindSafe for ExistentialNature
impl Send for ExistentialNature
impl Sync for ExistentialNature
impl Unpin for ExistentialNature
impl UnsafeUnpin for ExistentialNature
impl UnwindSafe for ExistentialNature
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