Skip to main content

SecretEntry

Struct SecretEntry 

Source
pub struct SecretEntry {
    pub env_var: String,
    pub value: Zeroizing<String>,
    pub source: Option<SecretSource>,
    pub placeholder: String,
    pub allowed_hosts: Vec<HostPattern>,
    pub injection: SecretInjection,
    pub on_violation: Option<ViolationAction>,
    pub require_tls_identity: bool,
}
Expand description

A single secret entry.

value is the sensitive material — it never enters the sandbox and is redacted by the Debug impl.

Fields§

§env_var: String

Environment variable name exposed to the sandbox (holds the placeholder).

Must be non-empty and must not contain = or NUL. microsandbox does not require shell-identifier syntax because Linux environment entries only require a NAME=value shape.

§value: Zeroizing<String>

The actual secret value (never enters the sandbox).

Empty when the entry carries a source reference instead: reference-model entries resolve the value host-side at spawn time so the durable sandbox config never stores raw secret material.

Wrapped in Zeroizing so the owned plaintext copy is wiped when the entry drops.

§source: Option<SecretSource>

Host-side source reference resolved into value at spawn time. None means value already carries the material (the inline model used by value-based secrets).

§placeholder: String

Placeholder string the sandbox sees instead of the real value.

Must be non-empty, no longer than MAX_SECRET_PLACEHOLDER_BYTES, and must not contain NUL, CR, or LF.

§allowed_hosts: Vec<HostPattern>

Hosts allowed to receive this secret.

§injection: SecretInjection

Where the secret can be injected.

§on_violation: Option<ViolationAction>

Action on a violation for this secret (overrides the config default).

§require_tls_identity: bool

Require verified TLS identity before substituting (default: true).

When true, the secret is only substituted if the connection uses TLS interception (not bypass) and the SNI matches an allowed host.

Implementations§

Source§

impl SecretEntry

Source

pub fn validate(&self, secret_index: usize) -> Result<(), SecretConfigError>

Validate this secret entry.

Trait Implementations§

Source§

impl Clone for SecretEntry

Source§

fn clone(&self) -> SecretEntry

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 Debug for SecretEntry

Source§

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

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

impl<'de> Deserialize<'de> for SecretEntry

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 Serialize for SecretEntry

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

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> 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, 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> 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, 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.