pub struct LambdaTelemetry<L = String> {
pub time: DateTime<Utc>,
pub record: LambdaTelemetryRecord<L>,
}Expand description
Payload received from the Telemetry API
Fields§
§time: DateTime<Utc>Time when the telemetry was generated
record: LambdaTelemetryRecord<L>Telemetry record entry
Trait Implementations§
Source§impl<L: Clone> Clone for LambdaTelemetry<L>
impl<L: Clone> Clone for LambdaTelemetry<L>
Source§fn clone(&self) -> LambdaTelemetry<L>
fn clone(&self) -> LambdaTelemetry<L>
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<L: Debug> Debug for LambdaTelemetry<L>
impl<L: Debug> Debug for LambdaTelemetry<L>
Source§impl<'de, L> Deserialize<'de> for LambdaTelemetry<L>where
L: Deserialize<'de>,
impl<'de, L> Deserialize<'de> for LambdaTelemetry<L>where
L: Deserialize<'de>,
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<L: PartialEq> PartialEq for LambdaTelemetry<L>
impl<L: PartialEq> PartialEq for LambdaTelemetry<L>
Source§impl<L> Serialize for LambdaTelemetry<L>where
L: Serialize,
impl<L> Serialize for LambdaTelemetry<L>where
L: Serialize,
impl<L> StructuralPartialEq for LambdaTelemetry<L>
Auto Trait Implementations§
impl<L> Freeze for LambdaTelemetry<L>where
L: Freeze,
impl<L> RefUnwindSafe for LambdaTelemetry<L>where
L: RefUnwindSafe,
impl<L> Send for LambdaTelemetry<L>where
L: Send,
impl<L> Sync for LambdaTelemetry<L>where
L: Sync,
impl<L> Unpin for LambdaTelemetry<L>where
L: Unpin,
impl<L> UnsafeUnpin for LambdaTelemetry<L>where
L: UnsafeUnpin,
impl<L> UnwindSafe for LambdaTelemetry<L>where
L: UnwindSafe,
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