pub struct MasterLog {
pub event_id: Uuid,
pub timestamp: DateTime<Utc>,
pub source_tool: String,
pub project_context: String,
pub session_id: String,
pub interaction: Interaction,
pub security_flags: SecurityFlags,
pub metadata: Value,
}Fields§
§event_id: Uuid§timestamp: DateTime<Utc>§source_tool: String§project_context: String§session_id: String§interaction: Interaction§security_flags: SecurityFlags§metadata: ValueImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MasterLog
impl<'de> Deserialize<'de> for MasterLog
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 MasterLog
impl RefUnwindSafe for MasterLog
impl Send for MasterLog
impl Sync for MasterLog
impl Unpin for MasterLog
impl UnsafeUnpin for MasterLog
impl UnwindSafe for MasterLog
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