Skip to main content

Sensitive

Struct Sensitive 

Source
pub struct Sensitive<T: Zeroize>(/* private fields */);
Expand description

A secret value, redacted in Debug/Display and zeroized on drop.

Never derive or implement Serialize on a type embedding this — that is the point: Sensitive deliberately has no Serialize impl, so a container that tries to derive one over a field of this type fails to compile instead of silently emitting the raw secret.

Deserializing (reading a secret in from TOML/env/CLI) is fine and supported via serde’s Deserialize — only the write-out direction is closed.

Implementations§

Source§

impl<T: Zeroize> Sensitive<T>

Source

pub const fn new(value: T) -> Self

Wraps value; ordinary Debug/Display no longer print it.

Source

pub const fn expose(&self) -> &T

Returns the wrapped value. The explicit name makes every read site grep-able (rg '\.expose\(') and visibly intentional.

The borrow this returns stays covered by Sensitive’s redaction and zeroize-on-drop, but nothing stops a call site from cloning it out — e.g. handing an owned String to a client that then holds its own untracked, un-zeroized copy for as long as that client lives. The LLM provider configs and constructors hold the key wrapped for their whole lifetime instead (#1277); see the provider crates. The general risk remains for any other call site that reaches for expose and clones the result into a plain, unwrapped copy.

Source

pub const fn expose_secret(&self) -> &T

Alias for Self::expose, matching the secrecy crate’s accessor name for call sites migrating between the two wrappers. Same past-this-point caveat: see Self::expose.

Source§

impl Sensitive<String>

Source

pub fn filter_nonempty(opt: Option<&Self>) -> Option<Self>

Treats an empty string as “not configured”.

Config loading routinely needs to turn an optional secret field into None when it’s merely present-but-empty — the wire encoding a shipped manifest’s ConfigMap uses for “unset” — before ever making a request with it. That check has to read the wrapped value, so this is the one sanctioned emptiness peek on a Sensitive<String> outside a request path; every other read site should reach for Self::expose only at the point where the secret is actually used (e.g. an auth header), not to inspect or branch on it ahead of time.

Returns None for None or Some wrapping "", otherwise clones opt’s value into a fresh, independently-owned Some.

Trait Implementations§

Source§

impl<T: Clone + Zeroize> Clone for Sensitive<T>

Source§

fn clone(&self) -> Sensitive<T>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<T: Zeroize> Debug for Sensitive<T>

Source§

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

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

impl<'de, T> Deserialize<'de> for Sensitive<T>
where T: Deserialize<'de> + Zeroize,

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<T: Zeroize> Display for Sensitive<T>

Source§

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

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

impl<T: Zeroize> Drop for Sensitive<T>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

fn pin_drop(self: Pin<&mut Self>)

🔬This is a nightly-only experimental API. (pin_ergonomics)
Execute the destructor for this type, but different to Drop::drop, it requires self to be pinned. Read more
Source§

impl<T: Zeroize> From<T> for Sensitive<T>

Source§

fn from(value: T) -> Self

Converts to this type from the input type.
Source§

impl FromStr for Sensitive<String>

Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Wraps the raw string so a clap Args/Parser field declared Sensitive<String> parses straight off the CLI/env value — clap infers a value parser from FromStr for any type that isn’t a ValueEnum.

Deliberately concrete on String rather than a blanket impl<T: FromStr>: a blanket impl registers Sensitive<_> as a FromStr candidate for every open inference variable in every downstream crate, which silently reshapes unrelated .parse() inference (it drove polyc-agent’s env parsing to a LazyLock<String> fallback that no longer type-checked). Every edge wraps a String, so a concrete impl carries the full feature with none of the inference blast radius.

Source§

type Err = Infallible

The associated error which can be returned from parsing.

Auto Trait Implementations§

§

impl<T> Freeze for Sensitive<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Sensitive<T>
where T: RefUnwindSafe,

§

impl<T> Send for Sensitive<T>
where T: Send,

§

impl<T> Sync for Sensitive<T>
where T: Sync,

§

impl<T> Unpin for Sensitive<T>
where T: Unpin,

§

impl<T> UnsafeUnpin for Sensitive<T>
where T: UnsafeUnpin,

§

impl<T> UnwindSafe for Sensitive<T>
where T: 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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

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> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> JsonDeserialize for T

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
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> 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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more