pub struct GenerateContentConfig {
pub temperature: Option<f32>,
pub top_p: Option<f32>,
pub top_k: Option<i32>,
pub max_output_tokens: Option<i32>,
pub response_schema: Option<Value>,
}Fields§
§temperature: Option<f32>§top_p: Option<f32>§top_k: Option<i32>§max_output_tokens: Option<i32>§response_schema: Option<Value>Trait Implementations§
Source§impl Clone for GenerateContentConfig
impl Clone for GenerateContentConfig
Source§fn clone(&self) -> GenerateContentConfig
fn clone(&self) -> GenerateContentConfig
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 GenerateContentConfig
impl Debug for GenerateContentConfig
Source§impl<'de> Deserialize<'de> for GenerateContentConfig
impl<'de> Deserialize<'de> for GenerateContentConfig
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 GenerateContentConfig
impl RefUnwindSafe for GenerateContentConfig
impl Send for GenerateContentConfig
impl Sync for GenerateContentConfig
impl Unpin for GenerateContentConfig
impl UnwindSafe for GenerateContentConfig
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