[][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.

Implementations

impl Unreal4LogEntry[src]

pub fn parse(log_slice: &[u8], limit: usize) -> Result<Vec<Self>, Unreal4Error>[src]

Tries to parse a blob normally coming from a logs file inside an Unreal4Crash into a vector of Unreal4LogEntry.

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.