pub struct StopBody {
pub run_id: Option<String>,
pub thread_id: Option<String>,
}Expand description
StopBody
JSON schema
{
"type": "object",
"properties": {
"runId": {
"type": "string"
},
"threadId": {
"type": "string"
}
}
}Fields§
§run_id: Option<String>§thread_id: Option<String>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StopBody
impl<'de> Deserialize<'de> for StopBody
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 StopBody
impl RefUnwindSafe for StopBody
impl Send for StopBody
impl Sync for StopBody
impl Unpin for StopBody
impl UnsafeUnpin for StopBody
impl UnwindSafe for StopBody
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