Skip to main content

ObservedJid

Struct ObservedJid 

Source
pub struct ObservedJid<'a>(/* private fields */);
Expand description

Privacy-aware Display wrapper for a Jid, for use in tracing fields.

Pseudonymous (LID) and non-personal (newsletter/bot/call, modern group ids) JIDs render in full, so the same peer/chat correlates across spans. JIDs whose user is a phone number (Server::carries_phone_number) render the user as a pn#<token> instead — preserving correlation without leaking the number. Legacy group/broadcast ids of the form <creator-phone>-<timestamp> get only the numeric prefix redacted (pn#<token>-<timestamp>), keeping the timestamp.

The token is a keyed hash (SipHash via a process-lifetime random key), not a plain digest of the number: the phone-number search space is small, so an unkeyed hash would be reversible by precomputation. The random key lives only in process memory, so exported traces cannot be brute-forced back to numbers. It is stable within a process run (correlation works) but not across restarts (a fresh key each start). Enable the tracing-pii feature to render raw numbers (local debugging only). The token is computed only while formatting an already-enabled span, so it costs nothing on disabled call sites.

Trait Implementations§

Source§

impl Display for ObservedJid<'_>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for ObservedJid<'a>

§

impl<'a> RefUnwindSafe for ObservedJid<'a>

§

impl<'a> Send for ObservedJid<'a>

§

impl<'a> Sync for ObservedJid<'a>

§

impl<'a> Unpin for ObservedJid<'a>

§

impl<'a> UnsafeUnpin for ObservedJid<'a>

§

impl<'a> UnwindSafe for ObservedJid<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToCompactString for T
where T: Display,

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.