pub struct TurnRecord {
pub thread_id: String,
pub turn_id: String,
pub provider: Option<String>,
pub model: Option<String>,
pub runtime_profile: Option<String>,
pub started_at_ms: Option<i64>,
pub completed_at_ms: Option<i64>,
pub status: String,
pub error_kind: Option<String>,
}Fields§
§thread_id: String§turn_id: String§provider: Option<String>§model: Option<String>§runtime_profile: Option<String>§started_at_ms: Option<i64>§completed_at_ms: Option<i64>§status: Stringrunning, completed, failed, or partial.
error_kind: Option<String>Trait Implementations§
Source§impl Clone for TurnRecord
impl Clone for TurnRecord
Source§fn clone(&self) -> TurnRecord
fn clone(&self) -> TurnRecord
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 TurnRecord
impl Debug for TurnRecord
Source§impl<'de> Deserialize<'de> for TurnRecord
impl<'de> Deserialize<'de> for TurnRecord
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
impl Eq for TurnRecord
Source§impl PartialEq for TurnRecord
impl PartialEq for TurnRecord
Source§fn eq(&self, other: &TurnRecord) -> bool
fn eq(&self, other: &TurnRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TurnRecord
impl Serialize for TurnRecord
impl StructuralPartialEq for TurnRecord
Auto Trait Implementations§
impl Freeze for TurnRecord
impl RefUnwindSafe for TurnRecord
impl Send for TurnRecord
impl Sync for TurnRecord
impl Unpin for TurnRecord
impl UnsafeUnpin for TurnRecord
impl UnwindSafe for TurnRecord
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.