pub struct GoogleCloudDialogflowV2Generator {
pub create_time: Option<DateTime<Utc>>,
pub description: Option<String>,
pub inference_parameter: Option<GoogleCloudDialogflowV2InferenceParameter>,
pub name: Option<String>,
pub summarization_context: Option<GoogleCloudDialogflowV2SummarizationContext>,
pub trigger_event: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}
Expand description
LLM generator.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- generators create projects (request|response)
- locations generators create projects (request|response)
- locations generators get projects (response)
- locations generators patch projects (request|response)
Fields§
§create_time: Option<DateTime<Utc>>
Output only. Creation time of this generator.
description: Option<String>
Optional. Human readable description of the generator.
inference_parameter: Option<GoogleCloudDialogflowV2InferenceParameter>
Optional. Inference parameters for this generator.
name: Option<String>
Output only. Identifier. The resource name of the generator. Format: projects//locations//generators/
summarization_context: Option<GoogleCloudDialogflowV2SummarizationContext>
Input of prebuilt Summarization feature.
trigger_event: Option<String>
Optional. The trigger event of the generator. It defines when the generator is triggered in a conversation.
update_time: Option<DateTime<Utc>>
Output only. Update time of this generator.
Trait Implementations§
Source§impl Clone for GoogleCloudDialogflowV2Generator
impl Clone for GoogleCloudDialogflowV2Generator
Source§fn clone(&self) -> GoogleCloudDialogflowV2Generator
fn clone(&self) -> GoogleCloudDialogflowV2Generator
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 Default for GoogleCloudDialogflowV2Generator
impl Default for GoogleCloudDialogflowV2Generator
Source§fn default() -> GoogleCloudDialogflowV2Generator
fn default() -> GoogleCloudDialogflowV2Generator
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2Generator
impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2Generator
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 RequestValue for GoogleCloudDialogflowV2Generator
impl ResponseResult for GoogleCloudDialogflowV2Generator
Auto Trait Implementations§
impl Freeze for GoogleCloudDialogflowV2Generator
impl RefUnwindSafe for GoogleCloudDialogflowV2Generator
impl Send for GoogleCloudDialogflowV2Generator
impl Sync for GoogleCloudDialogflowV2Generator
impl Unpin for GoogleCloudDialogflowV2Generator
impl UnwindSafe for GoogleCloudDialogflowV2Generator
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more