pub struct ApiResponseFormat {
pub format_type: String,
pub json_schema: Option<ApiJsonSchema>,
}Fields§
§format_type: String§json_schema: Option<ApiJsonSchema>Trait Implementations§
Source§impl Clone for ApiResponseFormat
impl Clone for ApiResponseFormat
Source§fn clone(&self) -> ApiResponseFormat
fn clone(&self) -> ApiResponseFormat
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 moreSource§impl Debug for ApiResponseFormat
impl Debug for ApiResponseFormat
Source§impl<'de> Deserialize<'de> for ApiResponseFormat
impl<'de> Deserialize<'de> for ApiResponseFormat
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 PartialEq for ApiResponseFormat
impl PartialEq for ApiResponseFormat
Source§fn eq(&self, other: &ApiResponseFormat) -> bool
fn eq(&self, other: &ApiResponseFormat) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ApiResponseFormat
impl Serialize for ApiResponseFormat
impl StructuralPartialEq for ApiResponseFormat
Auto Trait Implementations§
impl Freeze for ApiResponseFormat
impl RefUnwindSafe for ApiResponseFormat
impl Send for ApiResponseFormat
impl Sync for ApiResponseFormat
impl Unpin for ApiResponseFormat
impl UnsafeUnpin for ApiResponseFormat
impl UnwindSafe for ApiResponseFormat
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