pub struct AssistantTurnEndData {
pub turn_id: String,
}Expand description
Turn completion metadata including the turn identifier
Fields§
§turn_id: StringIdentifier of the turn that has ended, matching the corresponding assistant.turn_start event
Trait Implementations§
Source§impl Clone for AssistantTurnEndData
impl Clone for AssistantTurnEndData
Source§fn clone(&self) -> AssistantTurnEndData
fn clone(&self) -> AssistantTurnEndData
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 AssistantTurnEndData
impl Debug for AssistantTurnEndData
Source§impl<'de> Deserialize<'de> for AssistantTurnEndData
impl<'de> Deserialize<'de> for AssistantTurnEndData
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 AssistantTurnEndData
impl RefUnwindSafe for AssistantTurnEndData
impl Send for AssistantTurnEndData
impl Sync for AssistantTurnEndData
impl Unpin for AssistantTurnEndData
impl UnsafeUnpin for AssistantTurnEndData
impl UnwindSafe for AssistantTurnEndData
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