Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-ffi.
pub struct AtifInvocationInfo {
pub start_timestamp: Option<f64>,
pub end_timestamp: Option<f64>,
pub invocation_id: Option<String>,
pub status: Option<String>,
pub framework: Option<String>,
}
Invocation timing and correlation metadata for one execution occurrence.
start_timestamp and end_timestamp are always emitted together or not at all.
start_timestamp: Option<f64>Invocation start timestamp in Unix epoch seconds.
end_timestamp: Option<f64>Invocation end timestamp in Unix epoch seconds.
invocation_id: Option<String>Stable invocation identifier for correlation.
status: Option<String>Terminal status of the invocation.
framework: Option<String>Runtime or framework label.
impl Clone for AtifInvocationInfoimpl Clone for AtifInvocationInfo
clonefn clone(&self) -> AtifInvocationInfo
clone_fromfn clone_from(&mut self, source: &Self)
impl Debug for AtifInvocationInfoimpl Debug for AtifInvocationInfo
fmtfn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<'de> Deserialize<'de> for AtifInvocationInfoimpl<'de> Deserialize<'de> for AtifInvocationInfo
deserializefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Serialize for AtifInvocationInfoimpl Serialize for AtifInvocationInfo
serializefn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where
__S: Serializer,