pub struct Dataset {
pub display_name: Option<String>,
pub name: Option<String>,
pub source: Option<String>,
}Expand description
Vertex AI dataset associated with the finding.
This type is not used in any activity, and only used as part of another schema.
Fields§
§display_name: Option<String>The user defined display name of dataset, e.g. plants-dataset
name: Option<String>Resource name of the dataset, e.g. projects/{project}/locations/{location}/datasets/2094040236064505856
source: Option<String>Data source, such as BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.gsod
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Dataset
impl<'de> Deserialize<'de> for Dataset
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 Part for Dataset
Auto Trait Implementations§
impl Freeze for Dataset
impl RefUnwindSafe for Dataset
impl Send for Dataset
impl Sync for Dataset
impl Unpin for Dataset
impl UnwindSafe for Dataset
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