pub struct ResponseFormatJsonSchema {
pub json_schema: JsonSchema,
pub _type: String,
}
Fields§
§json_schema: JsonSchema
§_type: String
The type of response format being defined. Always json_schema
.
Trait Implementations§
Source§impl Debug for ResponseFormatJsonSchema
impl Debug for ResponseFormatJsonSchema
Source§impl<'de> Deserialize<'de> for ResponseFormatJsonSchema
impl<'de> Deserialize<'de> for ResponseFormatJsonSchema
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 ResponseFormatJsonSchema
impl RefUnwindSafe for ResponseFormatJsonSchema
impl Send for ResponseFormatJsonSchema
impl Sync for ResponseFormatJsonSchema
impl Unpin for ResponseFormatJsonSchema
impl UnwindSafe for ResponseFormatJsonSchema
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