pub enum EventKind {
Zone,
Dwell,
Occupancy,
Identity,
Pattern,
Anomaly,
Custom,
}Expand description
Coarse kind tag for an indexed event.
Payload-specific details live in EventPayload. Hosts match on kind
for cheap filtering without decoding full payloads.
Variants§
Zone
Zone membership or line crossing.
Dwell
Dwell timing within a zone.
Occupancy
Occupancy change inside a zone.
Identity
Identity / subject resolution lifecycle.
Pattern
Pattern detector output.
Anomaly
Anomaly detector output.
Custom
Application-defined custom event.
Trait Implementations§
impl Copy for EventKind
impl Eq for EventKind
impl StructuralPartialEq for EventKind
Auto Trait Implementations§
impl Freeze for EventKind
impl RefUnwindSafe for EventKind
impl Send for EventKind
impl Sync for EventKind
impl Unpin for EventKind
impl UnsafeUnpin for EventKind
impl UnwindSafe for EventKind
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