pub struct LogEntry {
pub source: LogEntrySource,
pub level: LogEntryLevel,
pub text: String,
pub category: Option<LogEntryCategory>,
pub timestamp: Timestamp,
pub url: Option<String>,
pub line_number: Option<JsUInt>,
pub stack_trace: Option<StackTrace>,
pub network_request_id: Option<RequestId>,
pub worker_id: Option<String>,
pub args: Option<Vec<RemoteObject>>,
}Fields§
§source: LogEntrySource§level: LogEntryLevel§text: String§category: Option<LogEntryCategory>§timestamp: Timestamp§url: Option<String>§line_number: Option<JsUInt>§stack_trace: Option<StackTrace>§network_request_id: Option<RequestId>§worker_id: Option<String>§args: Option<Vec<RemoteObject>>Trait Implementations§
source§impl<'de> Deserialize<'de> for LogEntry
impl<'de> Deserialize<'de> for LogEntry
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