pub struct AgentLogEntry {
pub level: String,
pub message: String,
pub timestamp: String,
pub window: Option<String>,
}Fields§
§level: String§message: String§timestamp: String§window: Option<String>Trait Implementations§
Source§impl Clone for AgentLogEntry
impl Clone for AgentLogEntry
Source§fn clone(&self) -> AgentLogEntry
fn clone(&self) -> AgentLogEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AgentLogEntry
impl Debug for AgentLogEntry
Source§impl<'de> Deserialize<'de> for AgentLogEntry
impl<'de> Deserialize<'de> for AgentLogEntry
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 AgentLogEntry
impl RefUnwindSafe for AgentLogEntry
impl Send for AgentLogEntry
impl Sync for AgentLogEntry
impl Unpin for AgentLogEntry
impl UnsafeUnpin for AgentLogEntry
impl UnwindSafe for AgentLogEntry
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