[][src]Struct symbolic_unreal::Unreal4LogEntry

pub struct Unreal4LogEntry {
    pub timestamp: Option<DateTime<Utc>>,
    pub component: Option<String>,
    pub message: String,
}

A log entry from an Unreal Engine 4 crash.

Fields

timestamp: Option<DateTime<Utc>>

The timestamp of the message, when available.

component: Option<String>

The component that issued the log, when available.

message: String

The log message.

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.