pub struct AirbyteAnalyticsTraceMessage {
pub value: Option<String>,
}
Expand description
A message to communicate usage information about the connector which is not captured by regular sync analytics because it’s specific to the connector internals. This is useful to understand how the connector is used and how to improve it. Each message is an event with a type and an optional payload value (both of them being strings). The event types should not be dynamically generated but defined statically. The payload value is optional and can contain arbitrary strings.
Fields§
§value: Option<String>
The value of the event - can be an arbitrary string. In case the value is numeric, it should be converted to a string. Casting for analytics purposes can happen in the warehouse.
Trait Implementations§
Source§impl Clone for AirbyteAnalyticsTraceMessage
impl Clone for AirbyteAnalyticsTraceMessage
Source§fn clone(&self) -> AirbyteAnalyticsTraceMessage
fn clone(&self) -> AirbyteAnalyticsTraceMessage
Returns a duplicate 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 AirbyteAnalyticsTraceMessage
impl Debug for AirbyteAnalyticsTraceMessage
Source§impl<'de> Deserialize<'de> for AirbyteAnalyticsTraceMessage
impl<'de> Deserialize<'de> for AirbyteAnalyticsTraceMessage
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AirbyteAnalyticsTraceMessage
impl PartialEq for AirbyteAnalyticsTraceMessage
Source§fn eq(&self, other: &AirbyteAnalyticsTraceMessage) -> bool
fn eq(&self, other: &AirbyteAnalyticsTraceMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AirbyteAnalyticsTraceMessage
Auto Trait Implementations§
impl Freeze for AirbyteAnalyticsTraceMessage
impl RefUnwindSafe for AirbyteAnalyticsTraceMessage
impl Send for AirbyteAnalyticsTraceMessage
impl Sync for AirbyteAnalyticsTraceMessage
impl Unpin for AirbyteAnalyticsTraceMessage
impl UnwindSafe for AirbyteAnalyticsTraceMessage
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