pub struct RawResponseFormat {
pub type: String,
pub json_schema: Option<RawResponseJsonSchema>,
}Expand description
Provider-facing response format payload.
Fields§
§type: String§json_schema: Option<RawResponseJsonSchema>Trait Implementations§
Source§impl Clone for RawResponseFormat
impl Clone for RawResponseFormat
Source§fn clone(&self) -> RawResponseFormat
fn clone(&self) -> RawResponseFormat
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 RawResponseFormat
impl Debug for RawResponseFormat
Source§impl<'de> Deserialize<'de> for RawResponseFormat
impl<'de> Deserialize<'de> for RawResponseFormat
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 RawResponseFormat
impl RefUnwindSafe for RawResponseFormat
impl Send for RawResponseFormat
impl Sync for RawResponseFormat
impl Unpin for RawResponseFormat
impl UnsafeUnpin for RawResponseFormat
impl UnwindSafe for RawResponseFormat
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