pub struct RunSecrets {
pub codex_provider_token: Option<SecretValue>,
}Expand description
Per-activation secret envelope. A Bamboo-routed Codex token lives here so a warm worker never reuses a credential from an earlier run.
Fields§
§codex_provider_token: Option<SecretValue>Implementations§
Trait Implementations§
Source§impl Clone for RunSecrets
impl Clone for RunSecrets
Source§fn clone(&self) -> RunSecrets
fn clone(&self) -> RunSecrets
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 moreSource§impl Debug for RunSecrets
impl Debug for RunSecrets
Source§impl Default for RunSecrets
impl Default for RunSecrets
Source§fn default() -> RunSecrets
fn default() -> RunSecrets
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RunSecrets
impl<'de> Deserialize<'de> for RunSecrets
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 PartialEq for RunSecrets
impl PartialEq for RunSecrets
Source§impl Serialize for RunSecrets
impl Serialize for RunSecrets
impl StructuralPartialEq for RunSecrets
Auto Trait Implementations§
impl Freeze for RunSecrets
impl RefUnwindSafe for RunSecrets
impl Send for RunSecrets
impl Sync for RunSecrets
impl Unpin for RunSecrets
impl UnsafeUnpin for RunSecrets
impl UnwindSafe for RunSecrets
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