pub struct DiscoveredEventDataPoint {
pub data_point_configuration: Option<String>,
pub data_source: String,
pub last_updated_on: Option<DateTime<Utc>>,
pub name: Option<String>,
}
Expand description
A data point in a discovered event.
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.
Trait Implementations§
Source§impl Clone for DiscoveredEventDataPoint
impl Clone for DiscoveredEventDataPoint
Source§fn clone(&self) -> DiscoveredEventDataPoint
fn clone(&self) -> DiscoveredEventDataPoint
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 DiscoveredEventDataPoint
impl RefUnwindSafe for DiscoveredEventDataPoint
impl Send for DiscoveredEventDataPoint
impl Sync for DiscoveredEventDataPoint
impl Unpin for DiscoveredEventDataPoint
impl UnwindSafe for DiscoveredEventDataPoint
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