pub struct SystemLogRow {
pub timestamp: OffsetDateTime,
pub level: LogLevel,
pub resource_id: String,
pub message: String,
pub fields: HashMap<String, String>,
}
Fields§
§timestamp: OffsetDateTime
§level: LogLevel
§resource_id: String
§message: String
§fields: HashMap<String, String>
Trait Implementations§
Source§impl Clone for SystemLogRow
impl Clone for SystemLogRow
Source§fn clone(&self) -> SystemLogRow
fn clone(&self) -> SystemLogRow
Returns a copy 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 ComposeSchema for SystemLogRow
impl ComposeSchema for SystemLogRow
Source§impl<'de> Deserialize<'de> for SystemLogRow
impl<'de> Deserialize<'de> for SystemLogRow
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 Serialize for SystemLogRow
impl Serialize for SystemLogRow
Auto Trait Implementations§
impl Freeze for SystemLogRow
impl RefUnwindSafe for SystemLogRow
impl Send for SystemLogRow
impl Sync for SystemLogRow
impl Unpin for SystemLogRow
impl UnwindSafe for SystemLogRow
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