pub struct AiStudioAgentTextGenResponse {
pub type: AiAgentTextGenType,
pub access_state: String,
pub description: String,
pub custom_instructions: Option<Option<String>>,
pub suggested_questions: Option<Vec<String>>,
pub basic_gen: Option<AiStudioAgentBasicGenToolResponse>,
}Fields§
§type: AiAgentTextGenType§access_state: String§description: String§custom_instructions: Option<Option<String>>§suggested_questions: Option<Vec<String>>§basic_gen: Option<AiStudioAgentBasicGenToolResponse>Trait Implementations§
Source§impl Clone for AiStudioAgentTextGenResponse
impl Clone for AiStudioAgentTextGenResponse
Source§fn clone(&self) -> AiStudioAgentTextGenResponse
fn clone(&self) -> AiStudioAgentTextGenResponse
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 AiStudioAgentTextGenResponse
impl Debug for AiStudioAgentTextGenResponse
Source§impl Default for AiStudioAgentTextGenResponse
impl Default for AiStudioAgentTextGenResponse
Source§fn default() -> AiStudioAgentTextGenResponse
fn default() -> AiStudioAgentTextGenResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AiStudioAgentTextGenResponse
impl<'de> Deserialize<'de> for AiStudioAgentTextGenResponse
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
impl StructuralPartialEq for AiStudioAgentTextGenResponse
Auto Trait Implementations§
impl Freeze for AiStudioAgentTextGenResponse
impl RefUnwindSafe for AiStudioAgentTextGenResponse
impl Send for AiStudioAgentTextGenResponse
impl Sync for AiStudioAgentTextGenResponse
impl Unpin for AiStudioAgentTextGenResponse
impl UnsafeUnpin for AiStudioAgentTextGenResponse
impl UnwindSafe for AiStudioAgentTextGenResponse
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