Skip to main content

SensitiveValue

Struct SensitiveValue 

Source
pub struct SensitiveValue<T, P>(/* private fields */);
Expand description

Wrapper for leaf values to apply a redaction policy.

For external types, implement SensitiveWithPolicy<P> in your crate and wrap the value in SensitiveValue<T, P> to apply the policy.

Serialization: when the json feature is enabled, serde::Serialize emits the raw inner value unchanged. This is intentional. If you need redacted JSON, use .redacted(), .to_redacted_output(), or redacted_json() (from RedactedJsonExt) at the logging/serialization boundary instead of serializing the wrapper directly.

Leaf values are atomic: SensitiveValue treats T as an opaque unit and does not traverse its fields.

Implementations§

Source§

impl<T, P> SensitiveValue<T, P>

Source

pub fn redacted(&self) -> String

Returns the redacted string representation using the policy P.

Source§

impl<T, P> SensitiveValue<T, P>

Source

pub fn expose(&self) -> &T

Explicitly access the inner value.

This method makes it clear in your code that you are intentionally accessing the raw sensitive value. Use with care.

Source

pub fn expose_mut(&mut self) -> &mut T

Explicitly access the inner value mutably.

This method makes it clear in your code that you are intentionally accessing the raw sensitive value. Use with care.

Source

pub fn into_inner(self) -> T

Consume the wrapper and return the inner value.

Trait Implementations§

Source§

impl<T: Clone, P: Clone> Clone for SensitiveValue<T, P>

Source§

fn clone(&self) -> SensitiveValue<T, P>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T, P> Debug for SensitiveValue<T, P>

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<T: Default, P: Default> Default for SensitiveValue<T, P>

Source§

fn default() -> SensitiveValue<T, P>

Returns the “default value” for a type. Read more
Source§

impl<T, P> From<T> for SensitiveValue<T, P>

Source§

fn from(value: T) -> Self

Converts to this type from the input type.
Source§

impl<T: Hash, P: Hash> Hash for SensitiveValue<T, P>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<T: Ord, P: Ord> Ord for SensitiveValue<T, P>

Source§

fn cmp(&self, other: &SensitiveValue<T, P>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<T: PartialEq, P: PartialEq> PartialEq for SensitiveValue<T, P>

Source§

fn eq(&self, other: &SensitiveValue<T, P>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T: PartialOrd, P: PartialOrd> PartialOrd for SensitiveValue<T, P>

Source§

fn partial_cmp(&self, other: &SensitiveValue<T, P>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<T, P> ToRedactedOutput for SensitiveValue<T, P>

Source§

impl<T: Eq, P: Eq> Eq for SensitiveValue<T, P>

Source§

impl<T, P> StructuralPartialEq for SensitiveValue<T, P>

Auto Trait Implementations§

§

impl<T, P> Freeze for SensitiveValue<T, P>
where T: Freeze,

§

impl<T, P> RefUnwindSafe for SensitiveValue<T, P>

§

impl<T, P> Send for SensitiveValue<T, P>
where T: Send, P: Send,

§

impl<T, P> Sync for SensitiveValue<T, P>
where T: Sync, P: Sync,

§

impl<T, P> Unpin for SensitiveValue<T, P>
where T: Unpin, P: Unpin,

§

impl<T, P> UnwindSafe for SensitiveValue<T, P>
where T: UnwindSafe, P: UnwindSafe,

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<!> for T

Source§

fn from(t: !) -> T

Converts to this type from the input type.
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> NotSensitiveDebugExt for T
where T: Debug,

Source§

fn not_sensitive_debug(&self) -> NotSensitiveDebug<&Self>

Wraps a reference to the value as explicitly non-sensitive using Debug.
Source§

impl<T> NotSensitiveExt for T

Source§

fn not_sensitive(&self) -> NotSensitive<&Self>

Wraps a reference to the value as explicitly non-sensitive.
Source§

impl<T> Redactable for T
where T: RedactableWithMapper,

Source§

fn redact(self) -> Self

Redacts the value using policy-bound redaction. Read more
Source§

impl<T> RedactedOutputExt for T
where T: Redactable + Clone + Debug,

Source§

fn redacted_output(&self) -> RedactedOutputRef<'_, T>

Wraps the value for explicit logging-safe output.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. 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.