pub struct Dataset {
pub dataset_configuration: Option<String>,
pub data_points: Vec<DatasetDataPoint>,
pub data_source: Option<String>,
pub destinations: Vec<DatasetDestination>,
pub name: String,
pub type_ref: Option<String>,
}
Expand description
Represents a dataset.
Fields§
§dataset_configuration: Option<String>
Stringified JSON that contains connector-specific JSON string that describes configuration for the specific dataset.
data_points: Vec<DatasetDataPoint>
Array of data points that are part of the dataset.
data_source: Option<String>
Name of the data source within a dataset.
destinations: Vec<DatasetDestination>
Destinations for a dataset.
name: String
Name of the dataset.
type_ref: Option<String>
URI or type definition ID.
Trait Implementations§
impl StructuralPartialEq 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