#[non_exhaustive]pub struct VertexMultimodalDatasetSource {
pub dataset_name: String,
/* private fields */
}Available on crate feature
job-service only.Expand description
The Vertex Multimodal Dataset for the input content.
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_name: StringRequired. The resource name of the Vertex Dataset.
Format: projects/{project}/locations/{location}/datasets/{dataset}
Implementations§
Source§impl VertexMultimodalDatasetSource
impl VertexMultimodalDatasetSource
pub fn new() -> Self
Sourcepub fn set_dataset_name<T: Into<String>>(self, v: T) -> Self
pub fn set_dataset_name<T: Into<String>>(self, v: T) -> Self
Sets the value of dataset_name.
§Example
ⓘ
let x = VertexMultimodalDatasetSource::new().set_dataset_name("example");Trait Implementations§
Source§impl Clone for VertexMultimodalDatasetSource
impl Clone for VertexMultimodalDatasetSource
Source§fn clone(&self) -> VertexMultimodalDatasetSource
fn clone(&self) -> VertexMultimodalDatasetSource
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 VertexMultimodalDatasetSource
impl Default for VertexMultimodalDatasetSource
Source§fn default() -> VertexMultimodalDatasetSource
fn default() -> VertexMultimodalDatasetSource
Returns the “default value” for a type. Read more
Source§impl PartialEq for VertexMultimodalDatasetSource
impl PartialEq for VertexMultimodalDatasetSource
Source§fn eq(&self, other: &VertexMultimodalDatasetSource) -> bool
fn eq(&self, other: &VertexMultimodalDatasetSource) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VertexMultimodalDatasetSource
Auto Trait Implementations§
impl Freeze for VertexMultimodalDatasetSource
impl RefUnwindSafe for VertexMultimodalDatasetSource
impl Send for VertexMultimodalDatasetSource
impl Sync for VertexMultimodalDatasetSource
impl Unpin for VertexMultimodalDatasetSource
impl UnsafeUnpin for VertexMultimodalDatasetSource
impl UnwindSafe for VertexMultimodalDatasetSource
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