pub enum TelemetryMode {
Anonymous,
Pseudonymous,
}Expand description
Which privacy posture the reporter is operating in.
Variants§
Anonymous
No client identifier transmitted. CNIL consent-exempt under
the audience-measurement self-assessment, GDPR Art. 6(1)(f)
basis. Adapter example: teksilo-analytics-plausible.
Pseudonymous
Stable per-install UUID transmitted with every event. Requires
explicit consent under GDPR Art. 6(1)(a) + ePrivacy 5(3).
Adapter example: teksilo-analytics-posthog.
Trait Implementations§
Source§impl Clone for TelemetryMode
impl Clone for TelemetryMode
Source§fn clone(&self) -> TelemetryMode
fn clone(&self) -> TelemetryMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TelemetryMode
Source§impl Debug for TelemetryMode
impl Debug for TelemetryMode
impl Eq for TelemetryMode
Source§impl PartialEq for TelemetryMode
impl PartialEq for TelemetryMode
impl StructuralPartialEq for TelemetryMode
Auto Trait Implementations§
impl Freeze for TelemetryMode
impl RefUnwindSafe for TelemetryMode
impl Send for TelemetryMode
impl Sync for TelemetryMode
impl Unpin for TelemetryMode
impl UnsafeUnpin for TelemetryMode
impl UnwindSafe for TelemetryMode
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