pub struct TranscriptMeta {
pub saved_at: String,
pub steps: usize,
pub model: Option<String>,
}Fields§
§saved_at: StringISO-8601 timestamp when the run was saved.
steps: usizeNumber of steps the agent loop executed.
model: Option<String>Optional human label (often the model name).
Trait Implementations§
Source§impl Clone for TranscriptMeta
impl Clone for TranscriptMeta
Source§fn clone(&self) -> TranscriptMeta
fn clone(&self) -> TranscriptMeta
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 TranscriptMeta
impl Debug for TranscriptMeta
Source§impl<'de> Deserialize<'de> for TranscriptMeta
impl<'de> Deserialize<'de> for TranscriptMeta
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 TranscriptMeta
impl RefUnwindSafe for TranscriptMeta
impl Send for TranscriptMeta
impl Sync for TranscriptMeta
impl Unpin for TranscriptMeta
impl UnsafeUnpin for TranscriptMeta
impl UnwindSafe for TranscriptMeta
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