pub struct ConsoleLogEntry {
pub timestamp: i64,
pub level: String,
pub message: String,
pub args: Value,
pub stack_trace: Option<String>,
}Fields§
§timestamp: i64§level: String§message: String§args: Value§stack_trace: Option<String>Trait Implementations§
Source§impl Clone for ConsoleLogEntry
impl Clone for ConsoleLogEntry
Source§fn clone(&self) -> ConsoleLogEntry
fn clone(&self) -> ConsoleLogEntry
Returns a duplicate 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 Debug for ConsoleLogEntry
impl Debug for ConsoleLogEntry
Source§impl<'de> Deserialize<'de> for ConsoleLogEntry
impl<'de> Deserialize<'de> for ConsoleLogEntry
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 ConsoleLogEntry
impl RefUnwindSafe for ConsoleLogEntry
impl Send for ConsoleLogEntry
impl Sync for ConsoleLogEntry
impl Unpin for ConsoleLogEntry
impl UnsafeUnpin for ConsoleLogEntry
impl UnwindSafe for ConsoleLogEntry
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