pub struct NgEvent {
pub timestamp: String,
pub event_class: Option<String>,
pub event_id: String,
pub event_params: Vec<String>,
}Expand description
A type representing an ngLog event.
Fields§
§timestamp: StringA floating-point value representing the elapsed time since gameplay began.
event_class: Option<String>The category to which this event belongs, if any.
event_id: StringThe type of this event.
event_params: Vec<String>Optional data points associated with this event.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NgEvent
impl RefUnwindSafe for NgEvent
impl Send for NgEvent
impl Sync for NgEvent
impl Unpin for NgEvent
impl UnwindSafe for NgEvent
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