pub struct DatasetDataPoint {
pub data_point_configuration: Option<String>,
pub data_source: String,
pub name: String,
pub type_ref: Option<String>,
}
Expand description
Represents a data point in a dataset.
Fields§
§data_point_configuration: Option<String>
Stringified JSON that contains connector-specific configuration for the data point.
data_source: String
The address of the source of the data in the asset (e.g. URL) so that a client can access the data source on the asset.
name: String
The name of the data point.
type_ref: Option<String>
URI or type definition ID.
Trait Implementations§
Source§impl Clone for DatasetDataPoint
impl Clone for DatasetDataPoint
Source§fn clone(&self) -> DatasetDataPoint
fn clone(&self) -> DatasetDataPoint
Returns a copy 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 DatasetDataPoint
impl Debug for DatasetDataPoint
Source§impl PartialEq for DatasetDataPoint
impl PartialEq for DatasetDataPoint
impl StructuralPartialEq for DatasetDataPoint
Auto Trait Implementations§
impl Freeze for DatasetDataPoint
impl RefUnwindSafe for DatasetDataPoint
impl Send for DatasetDataPoint
impl Sync for DatasetDataPoint
impl Unpin for DatasetDataPoint
impl UnwindSafe for DatasetDataPoint
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