#[non_exhaustive]pub struct DatasetInputDataConfig {
pub dataset: String,
/* private fields */
}Available on crate feature
generator-evaluations only.Expand description
The distinctive configs for dataset as the conversation source.
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.dataset: StringRequired. The identifier of the dataset to be evaluated.
Format:
projects/<ProjectId>/locations/<LocationID>/datasets/<DatasetID>.
Implementations§
Trait Implementations§
Source§impl Clone for DatasetInputDataConfig
impl Clone for DatasetInputDataConfig
Source§fn clone(&self) -> DatasetInputDataConfig
fn clone(&self) -> DatasetInputDataConfig
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 DatasetInputDataConfig
impl Debug for DatasetInputDataConfig
Source§impl Default for DatasetInputDataConfig
impl Default for DatasetInputDataConfig
Source§fn default() -> DatasetInputDataConfig
fn default() -> DatasetInputDataConfig
Returns the “default value” for a type. Read more
Source§impl Message for DatasetInputDataConfig
impl Message for DatasetInputDataConfig
Source§impl PartialEq for DatasetInputDataConfig
impl PartialEq for DatasetInputDataConfig
impl StructuralPartialEq for DatasetInputDataConfig
Auto Trait Implementations§
impl Freeze for DatasetInputDataConfig
impl RefUnwindSafe for DatasetInputDataConfig
impl Send for DatasetInputDataConfig
impl Sync for DatasetInputDataConfig
impl Unpin for DatasetInputDataConfig
impl UnwindSafe for DatasetInputDataConfig
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