pub struct Event {
pub timestamp: SystemTime,
pub tag: EventTag,
pub value: EventValue,
}Expand description
An event log entry.
Events are structured log entries that consist of a timestamp, a numeric tag,
and a value. They are written to Android’s event log buffer and can be viewed
with logcat -b events.
Fields§
§timestamp: SystemTimeTimestamp
tag: EventTagTag
value: EventValueValue
Trait Implementations§
impl StructuralPartialEq for Event
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnwindSafe for Event
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