#[non_exhaustive]pub struct InlinedGenerateResponse {
pub metadata: Option<JsonMap>,
pub output: Option<InlinedGenerateResponseOutput>,
pub rest: JsonMap,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.metadata: Option<JsonMap>§output: Option<InlinedGenerateResponseOutput>§rest: JsonMapImplementations§
Trait Implementations§
Source§impl Clone for InlinedGenerateResponse
impl Clone for InlinedGenerateResponse
Source§fn clone(&self) -> InlinedGenerateResponse
fn clone(&self) -> InlinedGenerateResponse
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 InlinedGenerateResponse
impl Debug for InlinedGenerateResponse
Source§impl Default for InlinedGenerateResponse
impl Default for InlinedGenerateResponse
Source§fn default() -> InlinedGenerateResponse
fn default() -> InlinedGenerateResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InlinedGenerateResponse
impl<'de> Deserialize<'de> for InlinedGenerateResponse
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 InlinedGenerateResponse
impl PartialEq for InlinedGenerateResponse
Source§impl Serialize for InlinedGenerateResponse
impl Serialize for InlinedGenerateResponse
impl StructuralPartialEq for InlinedGenerateResponse
Auto Trait Implementations§
impl Freeze for InlinedGenerateResponse
impl RefUnwindSafe for InlinedGenerateResponse
impl Send for InlinedGenerateResponse
impl Sync for InlinedGenerateResponse
impl Unpin for InlinedGenerateResponse
impl UnsafeUnpin for InlinedGenerateResponse
impl UnwindSafe for InlinedGenerateResponse
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