pub struct DiscoveredDatasetDataPoint {
pub data_point_configuration: Option<String>,
pub data_source: String,
pub last_updated_on: Option<DateTime<Utc>>,
pub name: Option<String>,
pub type_ref: Option<String>,
}
Expand description
Represents a data point in a discovered 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 discovered asset (e.g. URL) so that a client can access the data source on the asset.
last_updated_on: Option<DateTime<Utc>>
UTC timestamp indicating when the data point was added or modified.
name: Option<String>
The name of the data point
type_ref: Option<String>
URI or type definition id
Trait Implementations§
Source§impl Clone for DiscoveredDatasetDataPoint
impl Clone for DiscoveredDatasetDataPoint
Source§fn clone(&self) -> DiscoveredDatasetDataPoint
fn clone(&self) -> DiscoveredDatasetDataPoint
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 moreAuto Trait Implementations§
impl Freeze for DiscoveredDatasetDataPoint
impl RefUnwindSafe for DiscoveredDatasetDataPoint
impl Send for DiscoveredDatasetDataPoint
impl Sync for DiscoveredDatasetDataPoint
impl Unpin for DiscoveredDatasetDataPoint
impl UnwindSafe for DiscoveredDatasetDataPoint
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