pub struct AgentOutputEntry {
pub ts: String,
pub iteration: u32,
pub hat: String,
pub content: AgentOutputContent,
}Expand description
Single agent output entry in JSONL format.
Fields§
§ts: String§iteration: u32§hat: String§content: AgentOutputContentTrait Implementations§
Source§impl Debug for AgentOutputEntry
impl Debug for AgentOutputEntry
Source§impl<'de> Deserialize<'de> for AgentOutputEntry
impl<'de> Deserialize<'de> for AgentOutputEntry
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 AgentOutputEntry
impl PartialEq for AgentOutputEntry
Source§impl Serialize for AgentOutputEntry
impl Serialize for AgentOutputEntry
impl StructuralPartialEq for AgentOutputEntry
Auto Trait Implementations§
impl Freeze for AgentOutputEntry
impl RefUnwindSafe for AgentOutputEntry
impl Send for AgentOutputEntry
impl Sync for AgentOutputEntry
impl Unpin for AgentOutputEntry
impl UnsafeUnpin for AgentOutputEntry
impl UnwindSafe for AgentOutputEntry
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