#[non_exhaustive]pub struct InputDataset {
pub dataset: String,
/* private fields */
}Available on crate feature
conversation-models only.Expand description
InputDataset used to create model or do evaluation. NextID:5
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. ConversationDataset resource name. Format:
projects/<Project ID>/locations/<Location ID>/conversationDatasets/<Conversation Dataset ID>
Implementations§
Trait Implementations§
Source§impl Clone for InputDataset
impl Clone for InputDataset
Source§fn clone(&self) -> InputDataset
fn clone(&self) -> InputDataset
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 InputDataset
impl Debug for InputDataset
Source§impl Default for InputDataset
impl Default for InputDataset
Source§fn default() -> InputDataset
fn default() -> InputDataset
Returns the “default value” for a type. Read more
Source§impl Message for InputDataset
impl Message for InputDataset
Source§impl PartialEq for InputDataset
impl PartialEq for InputDataset
impl StructuralPartialEq for InputDataset
Auto Trait Implementations§
impl Freeze for InputDataset
impl RefUnwindSafe for InputDataset
impl Send for InputDataset
impl Sync for InputDataset
impl Unpin for InputDataset
impl UnwindSafe for InputDataset
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