pub struct SessionResponsePartAction {
pub turn_id: String,
pub part: ResponsePart,
}Expand description
Structured content appended to the response.
Fields§
§turn_id: StringTurn identifier
part: ResponsePartResponse part (markdown or content ref)
Trait Implementations§
Source§impl Clone for SessionResponsePartAction
impl Clone for SessionResponsePartAction
Source§fn clone(&self) -> SessionResponsePartAction
fn clone(&self) -> SessionResponsePartAction
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 SessionResponsePartAction
impl Debug for SessionResponsePartAction
Source§impl<'de> Deserialize<'de> for SessionResponsePartAction
impl<'de> Deserialize<'de> for SessionResponsePartAction
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
Source§impl PartialEq for SessionResponsePartAction
impl PartialEq for SessionResponsePartAction
Source§fn eq(&self, other: &SessionResponsePartAction) -> bool
fn eq(&self, other: &SessionResponsePartAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SessionResponsePartAction
Auto Trait Implementations§
impl Freeze for SessionResponsePartAction
impl RefUnwindSafe for SessionResponsePartAction
impl Send for SessionResponsePartAction
impl Sync for SessionResponsePartAction
impl Unpin for SessionResponsePartAction
impl UnsafeUnpin for SessionResponsePartAction
impl UnwindSafe for SessionResponsePartAction
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