pub struct InsightResponseBody {
pub insight: Option<InsightResponse>,
}Expand description
InsightResponseBody
JSON schema
{
"type": "object",
"properties": {
"insight": {
"$ref": "#/components/schemas/InsightResponse"
}
}
}Fields§
§insight: Option<InsightResponse>Trait Implementations§
Source§impl Clone for InsightResponseBody
impl Clone for InsightResponseBody
Source§fn clone(&self) -> InsightResponseBody
fn clone(&self) -> InsightResponseBody
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 InsightResponseBody
impl Debug for InsightResponseBody
Source§impl Default for InsightResponseBody
impl Default for InsightResponseBody
Source§impl<'de> Deserialize<'de> for InsightResponseBody
impl<'de> Deserialize<'de> for InsightResponseBody
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 From<&InsightResponseBody> for InsightResponseBody
impl From<&InsightResponseBody> for InsightResponseBody
Source§fn from(value: &InsightResponseBody) -> Self
fn from(value: &InsightResponseBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InsightResponseBody
impl RefUnwindSafe for InsightResponseBody
impl Send for InsightResponseBody
impl Sync for InsightResponseBody
impl Unpin for InsightResponseBody
impl UnwindSafe for InsightResponseBody
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