pub struct NewEvent {
pub connection_key: ConnectionKey,
pub timestamp: Timestamp,
pub span_id: Option<SpanId>,
pub name: String,
pub target: String,
pub level: i32,
pub file_name: Option<String>,
pub file_line: Option<u32>,
pub fields: BTreeMap<String, Value>,
}Fields§
§connection_key: ConnectionKey§timestamp: Timestamp§span_id: Option<SpanId>§name: String§target: String§level: i32§file_name: Option<String>§file_line: Option<u32>§fields: BTreeMap<String, Value>Auto Trait Implementations§
impl Freeze for NewEvent
impl RefUnwindSafe for NewEvent
impl Send for NewEvent
impl Sync for NewEvent
impl Unpin for NewEvent
impl UnwindSafe for NewEvent
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