pub enum OutputTextContentType {
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"
],
"x-stainless-const": true
}Variants§
OutputText
Trait Implementations§
Source§impl Clone for OutputTextContentType
impl Clone for OutputTextContentType
Source§fn clone(&self) -> OutputTextContentType
fn clone(&self) -> OutputTextContentType
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 OutputTextContentType
Source§impl Debug for OutputTextContentType
impl Debug for OutputTextContentType
Source§impl<'de> Deserialize<'de> for OutputTextContentType
impl<'de> Deserialize<'de> for OutputTextContentType
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 OutputTextContentType
impl Display for OutputTextContentType
impl Eq for OutputTextContentType
Source§impl FromStr for OutputTextContentType
impl FromStr for OutputTextContentType
Source§impl Hash for OutputTextContentType
impl Hash for OutputTextContentType
Source§impl Ord for OutputTextContentType
impl Ord for OutputTextContentType
Source§fn cmp(&self, other: &OutputTextContentType) -> Ordering
fn cmp(&self, other: &OutputTextContentType) -> 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
Source§impl PartialEq for OutputTextContentType
impl PartialEq for OutputTextContentType
Source§impl PartialOrd for OutputTextContentType
impl PartialOrd for OutputTextContentType
Source§impl Serialize for OutputTextContentType
impl Serialize for OutputTextContentType
impl StructuralPartialEq for OutputTextContentType
Source§impl TryFrom<&String> for OutputTextContentType
impl TryFrom<&String> for OutputTextContentType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for OutputTextContentType
impl TryFrom<&str> for OutputTextContentType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for OutputTextContentType
impl TryFrom<String> for OutputTextContentType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for OutputTextContentType
impl RefUnwindSafe for OutputTextContentType
impl Send for OutputTextContentType
impl Sync for OutputTextContentType
impl Unpin for OutputTextContentType
impl UnsafeUnpin for OutputTextContentType
impl UnwindSafe for OutputTextContentType
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