pub enum ResponseStreamContentPart {
OutputText(ResponseOutputText),
Refusal(ResponseOutputRefusal),
ReasoningText(ResponseReasoningTextContent),
}Variants§
OutputText(ResponseOutputText)
Refusal(ResponseOutputRefusal)
ReasoningText(ResponseReasoningTextContent)
Trait Implementations§
Source§impl Clone for ResponseStreamContentPart
impl Clone for ResponseStreamContentPart
Source§fn clone(&self) -> ResponseStreamContentPart
fn clone(&self) -> ResponseStreamContentPart
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 ResponseStreamContentPart
impl Debug for ResponseStreamContentPart
Source§impl<'de> Deserialize<'de> for ResponseStreamContentPart
impl<'de> Deserialize<'de> for ResponseStreamContentPart
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 StructuralPartialEq for ResponseStreamContentPart
Auto Trait Implementations§
impl Freeze for ResponseStreamContentPart
impl RefUnwindSafe for ResponseStreamContentPart
impl Send for ResponseStreamContentPart
impl Sync for ResponseStreamContentPart
impl Unpin for ResponseStreamContentPart
impl UnsafeUnpin for ResponseStreamContentPart
impl UnwindSafe for ResponseStreamContentPart
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