pub enum ActorKind {
Human,
Process,
Agent,
Other,
}Expand description
The category an actor string falls into.
Variants§
Human
A person: human:<id>.
Process
An automated process: process:<id>.
Agent
An agent or tool: <producer>/<version>.
Other
Any other identity string (for example the spec’s team:ga4-docs).
Trait Implementations§
impl Copy for ActorKind
impl Eq for ActorKind
impl StructuralPartialEq for ActorKind
Auto Trait Implementations§
impl Freeze for ActorKind
impl RefUnwindSafe for ActorKind
impl Send for ActorKind
impl Sync for ActorKind
impl Unpin for ActorKind
impl UnsafeUnpin for ActorKind
impl UnwindSafe for ActorKind
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