pub struct AgentActionLog {
pub agent_id: String,
pub session_id: String,
pub actions: Vec<AgentAction>,
}Expand description
Log of all actions an agent performed in a session (Layer 4).
Fields§
§agent_id: String§session_id: String§actions: Vec<AgentAction>Trait Implementations§
Source§impl Clone for AgentActionLog
impl Clone for AgentActionLog
Source§fn clone(&self) -> AgentActionLog
fn clone(&self) -> AgentActionLog
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 AgentActionLog
impl Debug for AgentActionLog
Source§impl<'de> Deserialize<'de> for AgentActionLog
impl<'de> Deserialize<'de> for AgentActionLog
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 AgentActionLog
impl PartialEq for AgentActionLog
Source§impl Serialize for AgentActionLog
impl Serialize for AgentActionLog
impl Eq for AgentActionLog
impl StructuralPartialEq for AgentActionLog
Auto Trait Implementations§
impl Freeze for AgentActionLog
impl RefUnwindSafe for AgentActionLog
impl Send for AgentActionLog
impl Sync for AgentActionLog
impl Unpin for AgentActionLog
impl UnsafeUnpin for AgentActionLog
impl UnwindSafe for AgentActionLog
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