pub struct StoredIntelligence {
pub id: String,
pub name: String,
pub arch_id: String,
pub maturity: f64,
pub capabilities_json: String,
pub memories_json: String,
pub state_json: String,
pub created_at: i64,
pub updated_at: i64,
}Expand description
Stored intelligence record
Fields§
§id: String§name: String§arch_id: String§maturity: f64§capabilities_json: String§memories_json: String§state_json: String§created_at: i64§updated_at: i64Trait Implementations§
Source§impl Clone for StoredIntelligence
impl Clone for StoredIntelligence
Source§fn clone(&self) -> StoredIntelligence
fn clone(&self) -> StoredIntelligence
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 StoredIntelligence
impl Debug for StoredIntelligence
Source§impl<'de> Deserialize<'de> for StoredIntelligence
impl<'de> Deserialize<'de> for StoredIntelligence
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 StoredIntelligence
impl RefUnwindSafe for StoredIntelligence
impl Send for StoredIntelligence
impl Sync for StoredIntelligence
impl Unpin for StoredIntelligence
impl UnwindSafe for StoredIntelligence
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