#[non_exhaustive]pub struct DeleteConversationDatasetRequest {
pub name: String,
/* private fields */
}Available on crate feature
conversation-datasets only.Expand description
The request message for ConversationDatasets.DeleteConversationDataset.
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.name: StringRequired. The conversation dataset to delete. Format:
projects/<Project ID>/locations/<Location ID>/conversationDatasets/<Conversation Dataset ID>
Implementations§
Trait Implementations§
Source§impl Clone for DeleteConversationDatasetRequest
impl Clone for DeleteConversationDatasetRequest
Source§fn clone(&self) -> DeleteConversationDatasetRequest
fn clone(&self) -> DeleteConversationDatasetRequest
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 DeleteConversationDatasetRequest
impl Default for DeleteConversationDatasetRequest
Source§fn default() -> DeleteConversationDatasetRequest
fn default() -> DeleteConversationDatasetRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteConversationDatasetRequest
impl PartialEq for DeleteConversationDatasetRequest
Source§fn eq(&self, other: &DeleteConversationDatasetRequest) -> bool
fn eq(&self, other: &DeleteConversationDatasetRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteConversationDatasetRequest
Auto Trait Implementations§
impl Freeze for DeleteConversationDatasetRequest
impl RefUnwindSafe for DeleteConversationDatasetRequest
impl Send for DeleteConversationDatasetRequest
impl Sync for DeleteConversationDatasetRequest
impl Unpin for DeleteConversationDatasetRequest
impl UnwindSafe for DeleteConversationDatasetRequest
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