pub enum ResponseOutputTextType {
OutputText,
}Expand description
The type of the output text. Always output_text.
JSON schema
{
"description": "The type of the output text. Always `output_text`.",
"type": "string",
"enum": [
"output_text"
]
}Variants§
OutputText
Trait Implementations§
Source§impl Clone for ResponseOutputTextType
impl Clone for ResponseOutputTextType
Source§fn clone(&self) -> ResponseOutputTextType
fn clone(&self) -> ResponseOutputTextType
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 moreimpl Copy for ResponseOutputTextType
Source§impl Debug for ResponseOutputTextType
impl Debug for ResponseOutputTextType
Source§impl<'de> Deserialize<'de> for ResponseOutputTextType
impl<'de> Deserialize<'de> for ResponseOutputTextType
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 Display for ResponseOutputTextType
impl Display for ResponseOutputTextType
impl Eq for ResponseOutputTextType
Source§impl FromStr for ResponseOutputTextType
impl FromStr for ResponseOutputTextType
Source§impl Hash for ResponseOutputTextType
impl Hash for ResponseOutputTextType
Source§impl Ord for ResponseOutputTextType
impl Ord for ResponseOutputTextType
Source§fn cmp(&self, other: &ResponseOutputTextType) -> Ordering
fn cmp(&self, other: &ResponseOutputTextType) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for ResponseOutputTextType
impl PartialEq for ResponseOutputTextType
Source§impl PartialOrd for ResponseOutputTextType
impl PartialOrd for ResponseOutputTextType
Source§impl Serialize for ResponseOutputTextType
impl Serialize for ResponseOutputTextType
impl StructuralPartialEq for ResponseOutputTextType
Source§impl TryFrom<&String> for ResponseOutputTextType
impl TryFrom<&String> for ResponseOutputTextType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for ResponseOutputTextType
impl TryFrom<&str> for ResponseOutputTextType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for ResponseOutputTextType
impl TryFrom<String> for ResponseOutputTextType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for ResponseOutputTextType
impl RefUnwindSafe for ResponseOutputTextType
impl Send for ResponseOutputTextType
impl Sync for ResponseOutputTextType
impl Unpin for ResponseOutputTextType
impl UnsafeUnpin for ResponseOutputTextType
impl UnwindSafe for ResponseOutputTextType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.