pub struct ItemCompletedNotification {
pub thread_id: String,
pub turn_id: String,
pub item: ThreadItem,
}Expand description
item/completed notification.
Fields§
§thread_id: String§turn_id: String§item: ThreadItemTrait Implementations§
Source§impl Clone for ItemCompletedNotification
impl Clone for ItemCompletedNotification
Source§fn clone(&self) -> ItemCompletedNotification
fn clone(&self) -> ItemCompletedNotification
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 ItemCompletedNotification
impl Debug for ItemCompletedNotification
Source§impl<'de> Deserialize<'de> for ItemCompletedNotification
impl<'de> Deserialize<'de> for ItemCompletedNotification
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 ItemCompletedNotification
impl RefUnwindSafe for ItemCompletedNotification
impl Send for ItemCompletedNotification
impl Sync for ItemCompletedNotification
impl Unpin for ItemCompletedNotification
impl UnsafeUnpin for ItemCompletedNotification
impl UnwindSafe for ItemCompletedNotification
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