pub struct EventDataPoint {
pub data_point_configuration: Option<String>,
pub data_source: String,
pub name: String,
}
Expand description
A data point in an 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 event (e.g. URL) so that a client can access the data source on the asset.
name: String
The name of the data point.
Trait Implementations§
Source§impl Clone for EventDataPoint
impl Clone for EventDataPoint
Source§fn clone(&self) -> EventDataPoint
fn clone(&self) -> EventDataPoint
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 EventDataPoint
impl Debug for EventDataPoint
Source§impl PartialEq for EventDataPoint
impl PartialEq for EventDataPoint
impl StructuralPartialEq for EventDataPoint
Auto Trait Implementations§
impl Freeze for EventDataPoint
impl RefUnwindSafe for EventDataPoint
impl Send for EventDataPoint
impl Sync for EventDataPoint
impl Unpin for EventDataPoint
impl UnwindSafe for EventDataPoint
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