pub struct AgentLogEvent {
pub seq: u64,
pub ts: String,
pub provider: String,
pub wrapper_session_id: String,
pub provider_session_id: Option<String>,
pub source_kind: LogSourceKind,
pub completeness: LogCompleteness,
pub kind: LogEventKind,
}Fields§
§seq: u64§ts: String§provider: String§wrapper_session_id: String§provider_session_id: Option<String>§source_kind: LogSourceKind§completeness: LogCompleteness§kind: LogEventKindTrait Implementations§
Source§impl Clone for AgentLogEvent
impl Clone for AgentLogEvent
Source§fn clone(&self) -> AgentLogEvent
fn clone(&self) -> AgentLogEvent
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 AgentLogEvent
impl Debug for AgentLogEvent
Source§impl<'de> Deserialize<'de> for AgentLogEvent
impl<'de> Deserialize<'de> for AgentLogEvent
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
Auto Trait Implementations§
impl Freeze for AgentLogEvent
impl RefUnwindSafe for AgentLogEvent
impl Send for AgentLogEvent
impl Sync for AgentLogEvent
impl Unpin for AgentLogEvent
impl UnsafeUnpin for AgentLogEvent
impl UnwindSafe for AgentLogEvent
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