pub struct DeliberationRecord {
pub deliberation_id: String,
pub trigger_id: String,
pub step: usize,
pub created_at: SystemTime,
pub summary: String,
pub candidate_actions: Vec<String>,
pub confidence: f64,
pub outcome: DeliberationOutcome,
}Fields§
§deliberation_id: String§trigger_id: String§step: usize§created_at: SystemTime§summary: String§candidate_actions: Vec<String>§confidence: f64§outcome: DeliberationOutcomeTrait Implementations§
Source§impl Clone for DeliberationRecord
impl Clone for DeliberationRecord
Source§fn clone(&self) -> DeliberationRecord
fn clone(&self) -> DeliberationRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DeliberationRecord
impl Debug for DeliberationRecord
Source§impl<'de> Deserialize<'de> for DeliberationRecord
impl<'de> Deserialize<'de> for DeliberationRecord
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
Source§impl PartialEq for DeliberationRecord
impl PartialEq for DeliberationRecord
Source§fn eq(&self, other: &DeliberationRecord) -> bool
fn eq(&self, other: &DeliberationRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DeliberationRecord
impl Serialize for DeliberationRecord
impl StructuralPartialEq for DeliberationRecord
Auto Trait Implementations§
impl Freeze for DeliberationRecord
impl RefUnwindSafe for DeliberationRecord
impl Send for DeliberationRecord
impl Sync for DeliberationRecord
impl Unpin for DeliberationRecord
impl UnsafeUnpin for DeliberationRecord
impl UnwindSafe for DeliberationRecord
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